Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
impl-trait
/
impl-trait-in-bindings-issue-73003.rs
blob: fd8fe5f48dfa23aa1a2a1a050e6b84e43f53b896 [
file
] [
log
] [
blame
]
// check-pass
#![
feature
(
impl_trait_in_bindings
)]
//~^ WARN the feature `impl_trait_in_bindings` is incomplete
const
_
:
impl
Fn
()
=
||();
fn
main
()
{}