summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-params-in-different-spaces-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/type/type-params-in-different-spaces-2.rs')
-rw-r--r--src/test/ui/type/type-params-in-different-spaces-2.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/type/type-params-in-different-spaces-2.rs b/src/test/ui/type/type-params-in-different-spaces-2.rs
deleted file mode 100644
index 1211e465b..000000000
--- a/src/test/ui/type/type-params-in-different-spaces-2.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// Test static calls to make sure that we align the Self and input
-// type parameters on a trait correctly.
-
-trait Tr<T> : Sized {
- fn op(_: T) -> Self;
-}
-
-trait A: Tr<Self> {
- fn test<U>(u: U) -> Self {
- Tr::op(u) //~ ERROR E0277
- }
-}
-
-trait B<T>: Tr<T> {
- fn test<U>(u: U) -> Self {
- Tr::op(u) //~ ERROR E0277
- }
-}
-
-fn main() {
-}