summaryrefslogtreecommitdiff
path: root/test-nsc/files/pos/bug1.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test-nsc/files/pos/bug1.scala')
-rw-r--r--test-nsc/files/pos/bug1.scala8
1 files changed, 0 insertions, 8 deletions
diff --git a/test-nsc/files/pos/bug1.scala b/test-nsc/files/pos/bug1.scala
deleted file mode 100644
index bdf33ef20d..0000000000
--- a/test-nsc/files/pos/bug1.scala
+++ /dev/null
@@ -1,8 +0,0 @@
-object Exceptions {
-
- class CubeException(s: String) extends java.lang.RuntimeException(s);
-
- def main(args: Array[String]) =
- System.out.println(new CubeException("test"));
-
-}