summaryrefslogtreecommitdiff
path: root/test/files/run/t3887.scala
diff options
context:
space:
mode:
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")
-
-}