1
Fork 0

Add new repeat expr test.

Also add repeat expr test folder and move all related tests to it
This commit is contained in:
Oli Scherer 2022-04-12 07:28:07 +00:00
parent 4e6e68e27a
commit bc14b6bea6
7 changed files with 17 additions and 1 deletions

View file

@ -1,8 +0,0 @@
// run-pass
static FOO: [isize; 4] = [32; 4];
static BAR: [isize; 4] = [32, 32, 32, 32];
pub fn main() {
assert_eq!(FOO, BAR);
}