about summary refs log tree commit diff
path: root/tests/ui/limits/huge-struct.rs
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2024-09-20 00:39:10 -0700
committerJubilee Young <workingjubilee@gmail.com>2024-09-20 10:02:14 -0700
commit325af25c9441ecffd0fc2fb7d5f324fe6224fe7c (patch)
treef9ce7346234846bea84d75827b27c3e9d41014c5 /tests/ui/limits/huge-struct.rs
parent28628f37435e8899d5d0730fc1fb5aa7345a5e31 (diff)
downloadrust-325af25c9441ecffd0fc2fb7d5f324fe6224fe7c.tar.gz
rust-325af25c9441ecffd0fc2fb7d5f324fe6224fe7c.zip
TL note: current means target
Diffstat (limited to 'tests/ui/limits/huge-struct.rs')
-rw-r--r--tests/ui/limits/huge-struct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/limits/huge-struct.rs b/tests/ui/limits/huge-struct.rs
index 8d24abba0a2..f7ce4f26db1 100644
--- a/tests/ui/limits/huge-struct.rs
+++ b/tests/ui/limits/huge-struct.rs
@@ -46,6 +46,6 @@ struct S1M<T> { val: S1k<S1k<T>> }
 
 fn main() {
     let fat: Option<S1M<S1M<S1M<u32>>>> = None;
-    //~^ ERROR are too big for the current architecture
+    //~^ ERROR are too big for the target architecture
 
 }