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.rs24
1 files changed, 24 insertions, 0 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
new file mode 100644
index 000000000..d438795eb
--- /dev/null
+++ b/src/test/ui/generic-associated-types/parse/in-trait.rs
@@ -0,0 +1,24 @@
+// check-pass
+// compile-flags: -Z parse-only
+
+#![feature(generic_associated_types)]
+
+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() {}