summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/defaults/default-const-param-cannot-reference-self.rs
blob: 45275e6092059a0f6ad53e577d552371b5a06cbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
struct Struct<const N: usize = { Self; 10 }>;
//~^ ERROR generic parameters cannot use `Self` in their defaults [E0735]

enum Enum<const N: usize = { Self; 10 }> { }
//~^ ERROR generic parameters cannot use `Self` in their defaults [E0735]

union Union<const N: usize = { Self; 10 }> { not_empty: () }
//~^ ERROR generic parameters cannot use `Self` in their defaults [E0735]

fn main() {
    let _: Struct;
    let _: Enum;
    let _: Union;
}