aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t6574.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t6574.scala')
-rw-r--r--tests/untried/pos/t6574.scala19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/untried/pos/t6574.scala b/tests/untried/pos/t6574.scala
deleted file mode 100644
index 6bb0042c6..000000000
--- a/tests/untried/pos/t6574.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-class Bad[X, Y](val v: Int) extends AnyVal {
- def vv = v
- @annotation.tailrec final def foo[Z](a: Int)(b: String): Unit = {
- this.foo[Z](a)(b)
- }
-
- @annotation.tailrec final def differentReceiver {: Unit =
- {(); new Bad[X, Y](0)}.differentReceiver
- }
-
- @annotation.tailrec final def dependent[Z](a: Int)(b: String): b.type = {
- this.dependent[Z](a)(b)
- }
-}
-
-class HK[M[_]](val v: Int) extends AnyVal {
- def hk[N[_]]: Unit = if (false) hk[M] else ()
-}
-