summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/gat-bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/gat-bounds.rs')
-rw-r--r--src/test/pretty/gat-bounds.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/pretty/gat-bounds.rs b/src/test/pretty/gat-bounds.rs
deleted file mode 100644
index 0a361a383..000000000
--- a/src/test/pretty/gat-bounds.rs
+++ /dev/null
@@ -1,16 +0,0 @@
-// Check that associated types print generic parameters and where clauses.
-// See issue #67509.
-
-// pretty-compare-only
-
-trait X {
- type Y<T>: Trait where Self: Sized;
-}
-
-impl X for () {
- type Y<T> where Self: Sized = u32;
-}
-
-fn f<T: X<Y<()> = i32>>() {}
-
-fn main() { }