Skip to content

Commit 7ee1709

Browse files
committed
test
1 parent e4fb6b5 commit 7ee1709

File tree

5 files changed

+29
-0
lines changed

5 files changed

+29
-0
lines changed

tests/pos/t11788/Bar.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
object Bar extends App {
2+
println(new Foo().test())
3+
}

tests/pos/t11788/Foo.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
public class Foo {
2+
private String java;
3+
4+
public java.lang.Integer test() {
5+
//return Integer.valueOf(42);
6+
throw null;
7+
}
8+
}

tests/pos/t11788b/Bar.scala

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
object Bar extends App {
2+
println(new Foo().test())
3+
}

tests/pos/t11788b/Foo.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
public class Foo {
2+
private String java;
3+
4+
public java.lang.Integer test() {
5+
//return Integer.valueOf(42);
6+
throw null;
7+
}
8+
}

tests/pos/t11788b/java.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
2+
public class java {
3+
public static class lang {
4+
public static class Integer {
5+
}
6+
}
7+
}

0 commit comments

Comments
 (0)