blob: 7a0c0f2be5d7ac6cc1a54715d21d3e77fe9db9b3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// run-pass
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
struct S<const X: u32>;
impl<const X: u32> S<{X}> {
fn x() -> u32 {
X
}
}
fn main() {
assert_eq!(S::<19>::x(), 19);
}
|