summaryrefslogtreecommitdiffstats
path: root/src/test/ui/generic-associated-types/parse/in-trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/generic-associated-types/parse/in-trait.rs')
-rw-r--r--src/test/ui/generic-associated-types/parse/in-trait.rs22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/test/ui/generic-associated-types/parse/in-trait.rs b/src/test/ui/generic-associated-types/parse/in-trait.rs
deleted file mode 100644
index 6628aac37..000000000
--- a/src/test/ui/generic-associated-types/parse/in-trait.rs
+++ /dev/null
@@ -1,22 +0,0 @@
-// check-pass
-// compile-flags: -Z parse-only
-
-use std::ops::Deref;
-use std::fmt::Debug;
-
-trait Foo {
- type Bar<'a>;
- type Bar<'a, 'b>;
- type Bar<'a, 'b,>;
- type Bar<'a, 'b, T>;
- type Bar<'a, 'b, T, U>;
- type Bar<'a, 'b, T, U,>;
- type Bar<'a, 'b, T: Debug, U,>;
- type Bar<'a, 'b, T: Debug, U,>: Debug;
- type Bar<'a, 'b, T: Debug, U,>: Deref<Target = T> + Into<U>;
- type Bar<'a, 'b, T: Debug, U,> where T: Deref<Target = U>, U: Into<T>;
- type Bar<'a, 'b, T: Debug, U,>: Deref<Target = T> + Into<U>
- where T: Deref<Target = U>, U: Into<T>;
-}
-
-fn main() {}