Files
kotlin/compiler/testData/codegen/boxWithJava/builtinStubMethods/substitutedIterable/Test.java
2014-11-07 16:10:12 +03:00

9 lines
244 B
Java

public class Test {
public static void checkCallFromJava() {
try {
String x = _DefaultPackage.foo().iterator().next();
throw new AssertionError("E should have been thrown");
} catch (E e) { }
}
}