summaryrefslogtreecommitdiff
path: root/test/files/run/t3887.scala
diff options
context:
space:
mode:
authorPaul Phillips <paulp@improving.org>2010-10-04 16:15:17 +0000
committerPaul Phillips <paulp@improving.org>2010-10-04 16:15:17 +0000
commitff1e0647c18c4a79f1276b0d0a2360faed03b7d0 (patch)
treeef4e0b7fe342106b8ebcdb570e6e689d14e9c9cb /test/files/run/t3887.scala
parente0372eddc160678010c2b45be84a04af81ff63e5 (diff)
downloadscala-ff1e0647c18c4a79f1276b0d0a2360faed03b7d0.tar.gz
scala-ff1e0647c18c4a79f1276b0d0a2360faed03b7d0.tar.bz2
scala-ff1e0647c18c4a79f1276b0d0a2360faed03b7d0.zip
Reverts r23174, which I believe will bring the ...
Reverts r23174, which I believe will bring the build back to life. It only chokes under -optimise. No review.
Diffstat (limited to 'test/files/run/t3887.scala')
-rw-r--r--test/files/run/t3887.scala16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/files/run/t3887.scala b/test/files/run/t3887.scala
deleted file mode 100644
index 16ce983efc..0000000000
--- a/test/files/run/t3887.scala
+++ /dev/null
@@ -1,16 +0,0 @@
-object Test {
- def main(args: Array[String]) {
- assert( matchPair(1) )
- assert( !matchPair(2) )
- }
-
- def matchPair(i: Int) = {
- (i, "abc") match {
- case this.option1 => true
- case _ => false
- }
- }
-
- val option1: (Int, String) = (1, "abc")
-
-}