2023-08-13 09:02:31 +00:00
|
|
|
//@ known-bug: #110395
|
|
|
|
|
// FIXME check-pass
|
2023-02-01 05:55:48 +00:00
|
|
|
|
|
|
|
|
#![feature(const_trait_impl, const_closures)]
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
|
2025-03-11 12:08:45 +00:00
|
|
|
const fn test() -> impl [const] Fn() {
|
2023-02-01 05:55:48 +00:00
|
|
|
const move || {}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|