summaryrefslogtreecommitdiff
path: root/test/files/neg/bug128_129.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/neg/bug128_129.scala')
-rw-r--r--test/files/neg/bug128_129.scala15
1 files changed, 0 insertions, 15 deletions
diff --git a/test/files/neg/bug128_129.scala b/test/files/neg/bug128_129.scala
deleted file mode 100644
index afe4b8f332..0000000000
--- a/test/files/neg/bug128_129.scala
+++ /dev/null
@@ -1,15 +0,0 @@
-object Test {
- def foo:int = {
- val x | 1 = 2; // not allowed
- x
- }
-
- class Bar {
- case class PT(x: PT) {
- def foo(x: Any) = x match {
- case PT(a@PT(a)) => // not allowed
- }
- }
- }
-
-}