Sign in
android
/
toolchain
/
rustc
/
89a0a0cd9cbd0a0138a09bd877bbc73859a8c330
/
.
/
src
/
test
/
ui
/
consts
/
const-fn-ptr.rs
blob: b1befdf06af2ea1c45e865bb38654b710f532b83 [
file
] [
log
] [
blame
]
const
fn
make_fn_ptr
()
->
fn
()
{
||
{}
}
static
STAT
:
()
=
make_fn_ptr
()();
//~^ ERROR function pointer
const
CONST
:
()
=
make_fn_ptr
()();
//~^ ERROR function pointer
const
fn
call_ptr
()
{
make_fn_ptr
()();
//~^ ERROR function pointer
}
fn
main
()
{}