summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/elaborate-item-bounds.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/new-solver/elaborate-item-bounds.rs')
-rw-r--r--tests/ui/traits/new-solver/elaborate-item-bounds.rs12
1 files changed, 0 insertions, 12 deletions
diff --git a/tests/ui/traits/new-solver/elaborate-item-bounds.rs b/tests/ui/traits/new-solver/elaborate-item-bounds.rs
deleted file mode 100644
index 076aefcf8..000000000
--- a/tests/ui/traits/new-solver/elaborate-item-bounds.rs
+++ /dev/null
@@ -1,12 +0,0 @@
-// compile-flags: -Ztrait-solver=next
-// check-pass
-
-trait Foo {
- type Bar: Bar;
-}
-
-trait Bar: Baz {}
-
-trait Baz {}
-
-fn main() {}