summaryrefslogtreecommitdiff
path: root/test/files
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2011-05-17 10:57:28 +0000
committerIulian Dragos <jaguarul@gmail.com>2011-05-17 10:57:28 +0000
commit4074f0e1c21be9605592f6370adb398cef9f0379 (patch)
tree7d8333a9a4c611a3b639c63ea148486c98636b17 /test/files
parenta22be1267ace5faa9c16787910ed32227367177d (diff)
downloadscala-4074f0e1c21be9605592f6370adb398cef9f0379.tar.gz
scala-4074f0e1c21be9605592f6370adb398cef9f0379.tar.bz2
scala-4074f0e1c21be9605592f6370adb398cef9f0379.zip
Fixed #4593.
Diffstat (limited to 'test/files')
-rw-r--r--test/files/pos/t4593.scala20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/files/pos/t4593.scala b/test/files/pos/t4593.scala
new file mode 100644
index 0000000000..250f68216a
--- /dev/null
+++ b/test/files/pos/t4593.scala
@@ -0,0 +1,20 @@
+// ticket #4593
+trait A {
+
+ class B
+ case object D extends B
+
+ class C {
+
+ var x: B = D
+
+ def y = synchronized {
+ x match {
+ case D => {}
+ }
+ }
+
+ }
+
+}
+