aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/java-interop
diff options
context:
space:
mode:
Diffstat (limited to 'tests/pos/java-interop')
-rw-r--r--tests/pos/java-interop/i879.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/pos/java-interop/i879.java b/tests/pos/java-interop/i879.java
new file mode 100644
index 000000000..6db5b77ff
--- /dev/null
+++ b/tests/pos/java-interop/i879.java
@@ -0,0 +1,11 @@
+class Foo {
+ Foo(int i) {
+ }
+}
+
+
+class Bar extends Foo {
+ Bar() {
+ super(10);
+ }
+} \ No newline at end of file