summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfc-2632-const-trait-impl/const-closure-parse-not-item.rs
blob: 2c99d8bf1c6776899f51bec5ee735810fbafceb6 (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass

#![feature(const_trait_impl, const_closures)]
#![allow(incomplete_features)]

const fn test() -> impl ~const Fn() {
    const move || {}
}

fn main() {}