summaryrefslogtreecommitdiff
path: root/test/files/pos/bug694.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/pos/bug694.scala')
-rwxr-xr-xtest/files/pos/bug694.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/pos/bug694.scala b/test/files/pos/bug694.scala
deleted file mode 100755
index 96eb55f5c0..0000000000
--- a/test/files/pos/bug694.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object test3 {
- trait Type[T];
- case object IntType extends Type[Int];
- case object StringType extends Type[String];
-
- def f[T](t : Type[T]) : T = t match {
- case IntType => 10;
- case StringType => "hello";
- }
-} \ No newline at end of file