about summary refs log tree commit diff
path: root/src/test/ui/huge-array.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/huge-array.rs')
-rw-r--r--src/test/ui/huge-array.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/huge-array.rs b/src/test/ui/huge-array.rs
index 846380586a0..3070801f865 100644
--- a/src/test/ui/huge-array.rs
+++ b/src/test/ui/huge-array.rs
@@ -6,7 +6,7 @@
 
 fn generic<T: Copy>(t: T) {
     let s: [T; 1518600000] = [t; 1518600000];
-    //~^ ERROR the type `[[u8; 1518599999]; 1518600000]` is too big for the current architecture
+    //~^ ERROR values of the type `[[u8; 1518599999]; 1518600000]` are too big
 }
 
 fn main() {