summaryrefslogtreecommitdiff
path: root/test/files/run/t8611a.scala
diff options
context:
space:
mode:
authorJason Zaugg <jzaugg@gmail.com>2014-05-23 12:26:43 +0200
committerJason Zaugg <jzaugg@gmail.com>2014-06-10 17:30:28 +0200
commit7046d73e2a1d88273a8382f27a4fb0af6f87db3b (patch)
tree14a2ea05fde37f519323647336f9f380b9beb70a /test/files/run/t8611a.scala
parentddb29a8105bc3b692bc129cbd8ed111baae7076d (diff)
downloadscala-7046d73e2a1d88273a8382f27a4fb0af6f87db3b.tar.gz
scala-7046d73e2a1d88273a8382f27a4fb0af6f87db3b.tar.bz2
scala-7046d73e2a1d88273a8382f27a4fb0af6f87db3b.zip
SI-8611 Avoid accidental patmat unification with refinement types
In the enclosed test, t8611a.scala, the patterns `O.{A, B}` were incorrect treated as equivelent by the combination of `uniqueTpForTree` and `Const.uniqueTpForTree`. `uniqueTpForTree` used `Type#narrow` to try to create a distinct type for each new pattern tree it encountered. However, narrowing a `RefinedType` does not create a distinct type as we are used to when narrowing, e.g. a class type. // Type def narrow: Type = if (phase.erasedTypes) this else { val cowner = commonOwner(this) refinedType(this :: Nil, cowner, EmptyScope, cowner.pos).narrow } // CompoundType override def narrow: Type = typeSymbol.thisType This commit creates a fresh existential type symbol rather than trying to use `narrow`. I've included a unit test to show the sublteties of narrowing refinment types.
Diffstat (limited to 'test/files/run/t8611a.scala')
-rw-r--r--test/files/run/t8611a.scala16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/files/run/t8611a.scala b/test/files/run/t8611a.scala
new file mode 100644
index 0000000000..99304df762
--- /dev/null
+++ b/test/files/run/t8611a.scala
@@ -0,0 +1,16 @@
+trait K
+trait L
+
+object O {
+ type LK = K with L
+ val A: LK = new K with L
+ val B: LK = new K with L
+}
+
+object Test extends App {
+ val scrut: O.LK = O.B
+ scrut match {
+ case O.A => ???
+ case O.B => // spurious unreachable
+ }
+}