mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-30 12:07:40 +00:00
11 lines
168 B
Rust
11 lines
168 B
Rust
![]() |
// check-pass
|
||
|
|
||
|
#![feature(const_trait_impl, const_closures)]
|
||
|
#![allow(incomplete_features)]
|
||
|
|
||
|
const fn test() -> impl ~const Fn() {
|
||
|
const move || {}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|