summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generics/single-colon-path-not-const-generics.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generics/single-colon-path-not-const-generics.rs')
-rw-r--r--src/test/ui/generics/single-colon-path-not-const-generics.rs13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/test/ui/generics/single-colon-path-not-const-generics.rs b/src/test/ui/generics/single-colon-path-not-const-generics.rs
deleted file mode 100644
index 55a7ae0bb..000000000
--- a/src/test/ui/generics/single-colon-path-not-const-generics.rs
+++ /dev/null
@@ -1,13 +0,0 @@
-pub mod foo {
- pub mod bar {
- pub struct A;
- }
-}
-
-pub struct Foo {
- a: Vec<foo::bar:A>,
- //~^ ERROR expected
- //~| HELP path separator
-}
-
-fn main() {}