aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t2693.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t2693.scala')
-rw-r--r--tests/untried/pos/t2693.scala6
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/untried/pos/t2693.scala b/tests/untried/pos/t2693.scala
deleted file mode 100644
index 5d4d0380c..000000000
--- a/tests/untried/pos/t2693.scala
+++ /dev/null
@@ -1,6 +0,0 @@
-class A {
- trait T[A]
- def usetHk[T[_], A](ta: T[A]) = 0
- usetHk(new T[Int]{}: T[Int])
- usetHk(new T[Int]{}) // fails with: found: java.lang.Object with T[Int], required: ?T[ ?A ]
-}