Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2632-const-trait-impl
/
non-const-op-const-closure-non-const-outer.rs
blob: cd8bb5963ada23f319a31aa1a6fb19b31b76b29c [
file
] [
log
] [
blame
] [
edit
]
#![
feature
(
const_closures
,
const_trait_impl
)]
#![
allow
(
incomplete_features
)]
trait
Foo
{
fn
foo
(&
self
);
}
impl
Foo
for
()
{
fn
foo
(&
self
)
{}
}
fn
main
()
{
(
const
||
{
(()).
foo
()
})();
//~^ ERROR: cannot call non-const fn
}