]> git.proxmox.com Git - rustc.git/blob - tests/ui/rfc-2632-const-trait-impl/const-closure-parse-not-item.rs
New upstream version 1.69.0+dfsg1
[rustc.git] / tests / ui / rfc-2632-const-trait-impl / const-closure-parse-not-item.rs
1 // check-pass
2
3 #![feature(const_trait_impl, const_closures)]
4 #![allow(incomplete_features)]
5
6 const fn test() -> impl ~const Fn() {
7 const move || {}
8 }
9
10 fn main() {}