about summary refs log tree commit diff
path: root/tests/ui/closures/binder/const-bound.rs
blob: 10d869fcc85123a0b8e66bfd1526e0c56c63b603 (plain)
1
2
3
4
5
6
7
8
#![feature(closure_lifetime_binder, non_lifetime_binders)]
//~^ WARN  is incomplete and may not be safe to use

fn main()  {
    for<const N: i32> || -> () {};
    //~^ ERROR late-bound const parameters cannot be used currently
    //~| ERROR late-bound const parameter not allowed on closures
}