summaryrefslogtreecommitdiff
path: root/test/pos/philippe3.scala
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-01-19 09:25:20 +0000
committerpaltherr <paltherr@epfl.ch>2004-01-19 09:25:20 +0000
commit1dbc00126bf0e660b0286ac247271549158bcb65 (patch)
treefce1c2b6f71dd879b752edc54289386fb86942e1 /test/pos/philippe3.scala
parenta7fc16dfe690cf0f0a7db36596c7e26a8c417f82 (diff)
downloadscala-1dbc00126bf0e660b0286ac247271549158bcb65.tar.gz
scala-1dbc00126bf0e660b0286ac247271549158bcb65.tar.bz2
scala-1dbc00126bf0e660b0286ac247271549158bcb65.zip
- Moved test/pos test/neg and test/new into tes...
- Moved test/pos test/neg and test/new into test/files
Diffstat (limited to 'test/pos/philippe3.scala')
-rw-r--r--test/pos/philippe3.scala40
1 files changed, 0 insertions, 40 deletions
diff --git a/test/pos/philippe3.scala b/test/pos/philippe3.scala
deleted file mode 100644
index 9442583997..0000000000
--- a/test/pos/philippe3.scala
+++ /dev/null
@@ -1,40 +0,0 @@
-
-class Foo(x: Int) {}
-case class Bar(y: Int) extends Foo(y);
-
-
-trait T {}
-trait U {}
-class C() {}
-
-
-trait T1;
-trait T2 {}
-trait T5 extends T;
-trait T6 extends T {}
-trait T7 extends T with U;
-trait T8 extends T with U {}
-
-class C1();
-class C2() {}
-class C5() extends C();
-class C6() extends C() {}
-class C7() extends C() with U;
-class C8() extends C() with U {}
-
-case class D1();
-case class D2() {}
-case class D5() extends C();
-case class D6() extends C() {}
-case class D7() extends C() with U;
-case class D8() extends C() with U {}
-
-object M1;
-object M2 {}
-object M5 extends C();
-object M6 extends C() {}
-object M7 extends C() with U;
-object M8 extends C() with U {}
-
-
-