Move const generic regression tests to their old folder

This commit is contained in:
varkor
2019-10-07 21:55:35 +01:00
parent 59a31c8c67
commit 70c14dd9dd
16 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
// build-pass (FIXME(62277): could be check-pass?)
#![feature(const_generics)]
//~^ WARN the feature `const_generics` is incomplete and may cause the compiler to crash
struct Generic<const V: usize>;
fn main() {
let _ = Generic::<0>;
}