summaryrefslogtreecommitdiff
path: root/test/files/pos/virtpatmat_reach_const.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/virtpatmat_reach_const.scala')
-rw-r--r--test/files/pos/virtpatmat_reach_const.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/pos/virtpatmat_reach_const.scala b/test/files/pos/virtpatmat_reach_const.scala
new file mode 100644
index 0000000000..b55b7cb229
--- /dev/null
+++ b/test/files/pos/virtpatmat_reach_const.scala
@@ -0,0 +1,11 @@
+// check the interaction between constants and type tests in creating the equality axioms
+object Test {
+ type Formula = List[String]
+ val TrueF: Formula = List()
+ def distribute(a: Formula, b: Formula) = (a, b) match {
+ case (TrueF, _) =>
+ case (_, TrueF) => // bug: considered unreachable
+ case (a :: Nil, b :: Nil) =>
+ case _ =>
+ }
+} \ No newline at end of file