about summary refs log tree commit diff
path: root/tests/ui/const-generics/impl-const-generic-struct.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/impl-const-generic-struct.rs')
-rw-r--r--tests/ui/const-generics/impl-const-generic-struct.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/const-generics/impl-const-generic-struct.rs b/tests/ui/const-generics/impl-const-generic-struct.rs
index 7eb2c6a51fc..4f82cc758d9 100644
--- a/tests/ui/const-generics/impl-const-generic-struct.rs
+++ b/tests/ui/const-generics/impl-const-generic-struct.rs
@@ -1,4 +1,4 @@
-// run-pass
+//@ run-pass
 struct S<const X: u32>;
 
 impl<const X: u32> S<X> {