blob: 544b0f05b4e44e57b7548e48295fb5b4c5053853 [file] [log] [blame] [edit]
error: complex const arguments must be placed inside of a `const` block
--> $DIR/array-expr-complex.rs:8:28
|
LL | takes_array::<{ [1, 2, 1 + 2] }>();
| ^^^^^
error: complex const arguments must be placed inside of a `const` block
--> $DIR/array-expr-complex.rs:10:21
|
LL | takes_array::<{ [X; 3] }>();
| ^^^^^^
error: complex const arguments must be placed inside of a `const` block
--> $DIR/array-expr-complex.rs:12:21
|
LL | takes_array::<{ [0; Y] }>();
| ^^^^^^
error: aborting due to 3 previous errors