os-rust/tests/ui/limits/huge-array-simple-32.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
233 B
Text
Raw Normal View History

error: values of the type `[u8; 2147516416]` are too big for the current architecture
2023-07-04 21:01:10 -04:00
--> $DIR/huge-array-simple-32.rs:7:9
2019-08-04 21:18:05 -07:00
|
2019-08-06 11:23:32 -07:00
LL | let _fat: [u8; (1<<31)+(1<<15)] =
2019-08-04 21:18:05 -07:00
| ^^^^
2023-11-21 20:26:31 +01:00
error: aborting due to 1 previous error
2019-08-04 21:18:05 -07:00