summaryrefslogtreecommitdiff
path: root/test/files/neg/t6771b.check
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2013-04-24 08:57:26 +0200
committerJason Zaugg <jzaugg@gmail.com>2013-04-24 12:06:30 +0200
commit30099160320b649b1e8e5f69c8ad1b02478fbfe2 (patch)
tree9ab2e396c7a59379208e89fcc7324a5c4f21b65b /test/files/neg/t6771b.check
parent4dcb33e6f527f5e2bf978c9e1ca778c40bf29d54 (diff)
downloadscala-30099160320b649b1e8e5f69c8ad1b02478fbfe2.tar.gz
scala-30099160320b649b1e8e5f69c8ad1b02478fbfe2.tar.bz2
scala-30099160320b649b1e8e5f69c8ad1b02478fbfe2.zip
SI-6771 Alias awareness for checkableType in match analysis.
Failure to dealias the type of the scrutinee led the pattern matcher to incorrectly reason about the type test in: type Id[X] = X; (null: Id[Option[Int]]) match { case Some(_) => } Before, `checkableType` returned `Id[?]`, now it returns `Some[?]`.
Diffstat (limited to 'test/files/neg/t6771b.check')
-rw-r--r--test/files/neg/t6771b.check6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/files/neg/t6771b.check b/test/files/neg/t6771b.check
new file mode 100644
index 0000000000..ba99e9178d
--- /dev/null
+++ b/test/files/neg/t6771b.check
@@ -0,0 +1,6 @@
+t6771b.scala:14: error: type mismatch;
+ found : x.type (with underlying type String)
+ required: Test.a.type
+ b = b match { case x => x }
+ ^
+one error found