Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2632-const-trait-impl
/
const-closure-parse-not-item.rs
blob: b1b0e68b90db78140a081ab78f1d63b7c62dc986 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #110395
// FIXME check-pass
#![
feature
(
const_trait_impl
,
const_closures
)]
#![
allow
(
incomplete_features
)]
const
fn
test
()
->
impl
~
const
Fn
()
{
const
move
||
{}
}
fn
main
()
{}