Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
128232.rs
blob: 67f61e1b2402cf79a2cc18e4e3106b278e365f26 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #128232
#![
feature
(
generic_const_exprs
,
unsized_const_params
)]
fn
function
()
{}
struct
Wrapper
<
const
F
:
fn
()>;
impl
Wrapper
<{
bar
()
}>
{
fn
call
()
{}
}
fn
main
()
{
Wrapper
::<
function
>::
call
;
}