aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/pat_iuli.scala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/untried/pos/pat_iuli.scala')
-rw-r--r--tests/untried/pos/pat_iuli.scala22
1 files changed, 0 insertions, 22 deletions
diff --git a/tests/untried/pos/pat_iuli.scala b/tests/untried/pos/pat_iuli.scala
deleted file mode 100644
index 46356ff58..000000000
--- a/tests/untried/pos/pat_iuli.scala
+++ /dev/null
@@ -1,22 +0,0 @@
-trait Ops { self: MyCodes =>
- abstract class Instru
- object opcodes {
- case class SWITCH(i:Int) extends Instru
- case object EmptyInstr extends Instru
- }
-}
-
-trait Blox { self: MyCodes =>
- import opcodes._
- class Basick {
- var foo: Instru = null
-
- def bar = foo match {
- case SWITCH(i) => i
- case EmptyInstr => 0
- }
- }
-}
-
-abstract class MyCodes extends AnyRef with Ops with Blox {
-}