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