summaryrefslogtreecommitdiff
path: root/test/files/pos/t0301.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-01-30 11:16:10 +0000
committermichelou <michelou@epfl.ch>2008-01-30 11:16:10 +0000
commit1bb3f81b2e10dec7b949aea0dcb6d58726f4f4f0 (patch)
tree2296c1cc9d6811399672c5aee688d9ca05183ab0 /test/files/pos/t0301.scala
parent345d649bb252f9835a23776db036188bf875283a (diff)
downloadscala-1bb3f81b2e10dec7b949aea0dcb6d58726f4f4f0.tar.gz
scala-1bb3f81b2e10dec7b949aea0dcb6d58726f4f4f0.tar.bz2
scala-1bb3f81b2e10dec7b949aea0dcb6d58726f4f4f0.zip
updated some test files
Diffstat (limited to 'test/files/pos/t0301.scala')
-rw-r--r--test/files/pos/t0301.scala12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/files/pos/t0301.scala b/test/files/pos/t0301.scala
new file mode 100644
index 0000000000..cb68f38062
--- /dev/null
+++ b/test/files/pos/t0301.scala
@@ -0,0 +1,12 @@
+package fos
+
+abstract class Expr
+case class Var extends Expr
+
+object Analyzer {
+ def substitution(expr: Expr, cls: (Var,Var)): Expr =
+ expr match {
+ case cls._2 => cls._1 // source of the error
+ case _ => expr
+ }
+}