summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/const-param-after-const-literal-arg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/const-generics/const-param-after-const-literal-arg.rs')
-rw-r--r--src/test/ui/const-generics/const-param-after-const-literal-arg.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/test/ui/const-generics/const-param-after-const-literal-arg.rs b/src/test/ui/const-generics/const-param-after-const-literal-arg.rs
deleted file mode 100644
index d8a0e076e..000000000
--- a/src/test/ui/const-generics/const-param-after-const-literal-arg.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-// check-pass
-
-struct Foo<const A: usize, const B: usize>;
-
-impl<const A: usize> Foo<1, A> {} // ok
-
-fn main() {}