Files
kotlin/compiler/testData/codegen/boxWithJava/builtinStubMethods/substitutedIterable/Test.java
2015-10-19 16:03:16 +03:00

9 lines
250 B
Java
Vendored

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