about summary refs log tree commit diff
path: root/tests/ui/const-generics/vec-macro-in-static-array.rs
diff options
context:
space:
mode:
authorKivooeo <Kivooeo123@gmail.com>2025-07-24 17:22:54 +0500
committerKivooeo <Kivooeo123@gmail.com>2025-07-31 21:25:49 +0500
commita4a5bf5a71bd0c3fb52a28f81d88ce1755b3bc30 (patch)
treeb69177434a4026599cbd602cc2aee39759f89cdd /tests/ui/const-generics/vec-macro-in-static-array.rs
parentd636a6590ce1429ff011e04bb0b4d393dc382226 (diff)
downloadrust-a4a5bf5a71bd0c3fb52a28f81d88ce1755b3bc30.tar.gz
rust-a4a5bf5a71bd0c3fb52a28f81d88ce1755b3bc30.zip
comments
Diffstat (limited to 'tests/ui/const-generics/vec-macro-in-static-array.rs')
-rw-r--r--tests/ui/const-generics/vec-macro-in-static-array.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/ui/const-generics/vec-macro-in-static-array.rs b/tests/ui/const-generics/vec-macro-in-static-array.rs
index 9f1fc42774f..7a81836e255 100644
--- a/tests/ui/const-generics/vec-macro-in-static-array.rs
+++ b/tests/ui/const-generics/vec-macro-in-static-array.rs
@@ -1,3 +1,5 @@
+//! Regression test for https://github.com/rust-lang/rust/issues/13446
+
 // Used to cause ICE
 
 static VEC: [u32; 256] = vec![];