summary refs log tree commit diff
path: root/src/test/ui/const-generics/issue-93647.rs
blob: 6a8fe64d1875dd5be7bb8ff22dcf41e6d3be401c (plain)
1
2
3
4
5
6
struct X<const N: usize = {
    (||1usize)()
    //~^ ERROR calls in constants are limited to
}>;

fn main() {}