Add test for const impl
This commit is contained in:
parent
0686daab4e
commit
b3207d531d
2 changed files with 22 additions and 0 deletions
16
src/test/ui/const-generics/impl-const-generic-struct.rs
Normal file
16
src/test/ui/const-generics/impl-const-generic-struct.rs
Normal file
|
@ -0,0 +1,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);
|
||||||
|
}
|
|
@ -0,0 +1,6 @@
|
||||||
|
warning: the feature `const_generics` is incomplete and may cause the compiler to crash
|
||||||
|
--> $DIR/impl-const-generic-struct.rs:3:12
|
||||||
|
|
|
||||||
|
LL | #![feature(const_generics)]
|
||||||
|
| ^^^^^^^^^^^^^^
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue