aboutsummaryrefslogtreecommitdiff
path: root/tests/pos-java-interop/i879.java
blob: 6db5b77ff20ffe2f3f8084950ce9afdaa9784a60 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class Foo {
  Foo(int i) {
  }
}


class Bar extends Foo {
  Bar() {
    super(10);
  }
}