Sign in
android
/
toolchain
/
rustc
/
5c0824a599f2f1f4dcb9c92edf09f6c1b555988d
/
.
/
tests
/
ui
/
rfc-2632-const-trait-impl
/
const-closure-parse-not-item.rs
blob: 2c99d8bf1c6776899f51bec5ee735810fbafceb6 [
file
] [
log
] [
blame
]
// check-pass
#![
feature
(
const_trait_impl
,
const_closures
)]
#![
allow
(
incomplete_features
)]
const
fn
test
()
->
impl
~
const
Fn
()
{
const
move
||
{}
}
fn
main
()
{}