aboutsummaryrefslogtreecommitdiff
path: root/tests/patmat/t7466.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/patmat/t7466.scala')
-rw-r--r--tests/patmat/t7466.scala17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/patmat/t7466.scala b/tests/patmat/t7466.scala
new file mode 100644
index 000000000..a74bf4ee2
--- /dev/null
+++ b/tests/patmat/t7466.scala
@@ -0,0 +1,17 @@
+object Test extends App {
+ val Yes1 = true
+ val Yes2 = true
+ val No1 = false
+ val No2 = false
+
+ def test(b1: Boolean, b2: Boolean) = {
+ (b1, b2) match {
+ case (No1, No2) => println("1")
+ case (No1, Yes2) => println("2")
+ case (Yes1, No2) => println("3")
+ case (Yes1, Yes2) => println("4")
+ }
+ }
+
+ test(No1, Yes2)
+} \ No newline at end of file