aboutsummaryrefslogtreecommitdiff
path: root/tests/pending/pos/t7505.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pending/pos/t7505.scala')
-rw-r--r--tests/pending/pos/t7505.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/pending/pos/t7505.scala b/tests/pending/pos/t7505.scala
deleted file mode 100644
index bc8c7fad6..000000000
--- a/tests/pending/pos/t7505.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-import scala.language.reflectiveCalls
-
-case class ContextProperty(value: Any) {
- type HasToInt = { def toInt:Int }
-
- def toInt: Int = value match {
- case n: HasToInt => n.toInt
- }
-}
-
-// was:
-// error:7: error during expansion of this match (this is a scalac bug).
-// The underlying error was: type mismatch;
-// found : Boolean(true)
-// required: AnyRef
-// def toInt: Int = value match {