summaryrefslogtreecommitdiff
path: root/test/files/run/t3835.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/t3835.scala')
-rw-r--r--test/files/run/t3835.scala4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/files/run/t3835.scala b/test/files/run/t3835.scala
new file mode 100644
index 0000000000..1f0e35a89a
--- /dev/null
+++ b/test/files/run/t3835.scala
@@ -0,0 +1,4 @@
+object Test extends Application {
+ println((1, 2, 3) match { case (r, \u03b8, \u03c6) => r + \u03b8 + \u03c6 })
+ println(1 match { case \u00e9 => \u00e9 })
+}