summaryrefslogtreecommitdiffstats
path: root/tests/ui/chalkify/lower_trait.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/chalkify/lower_trait.rs')
-rw-r--r--tests/ui/chalkify/lower_trait.rs11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/ui/chalkify/lower_trait.rs b/tests/ui/chalkify/lower_trait.rs
deleted file mode 100644
index 8f5b35822..000000000
--- a/tests/ui/chalkify/lower_trait.rs
+++ /dev/null
@@ -1,11 +0,0 @@
-// check-pass
-// compile-flags: -Z trait-solver=chalk
-
-trait Bar { }
-
-trait Foo<S, T: ?Sized> {
- type Assoc: Bar + ?Sized;
-}
-
-fn main() {
-}