aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/t7505.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/t7505.scala')
-rw-r--r--tests/untried/pos/t7505.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/untried/pos/t7505.scala b/tests/untried/pos/t7505.scala
new file mode 100644
index 000000000..bc8c7fad6
--- /dev/null
+++ b/tests/untried/pos/t7505.scala
@@ -0,0 +1,16 @@
+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 {