summaryrefslogtreecommitdiffstats
path: root/tests/ui/limits/issue-56762.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/limits/issue-56762.rs')
-rw-r--r--tests/ui/limits/issue-56762.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/tests/ui/limits/issue-56762.rs b/tests/ui/limits/issue-56762.rs
index ed7ee4da8..1c7facb04 100644
--- a/tests/ui/limits/issue-56762.rs
+++ b/tests/ui/limits/issue-56762.rs
@@ -14,8 +14,10 @@ impl TooBigArray {
}
static MY_TOO_BIG_ARRAY_1: TooBigArray = TooBigArray::new();
-//~^ ERROR values of the type `[u8; 2305843009213693951]` are too big
+//~^ ERROR could not evaluate static initializer
+//~| too big
static MY_TOO_BIG_ARRAY_2: [u8; HUGE_SIZE] = [0x00; HUGE_SIZE];
-//~^ ERROR values of the type `[u8; 2305843009213693951]` are too big
+//~^ ERROR could not evaluate static initializer
+//~| too big
fn main() { }