Add test for obsolete issue

#KT-10494
This commit is contained in:
Alexander Udalov
2018-01-12 12:50:38 +01:00
parent aee7329b89
commit b925b6ef9f
5 changed files with 38 additions and 0 deletions
@@ -12837,6 +12837,18 @@ public class JsCodegenBoxTestGenerated extends AbstractJsCodegenBoxTest {
doTest(fileName);
}
@TestMetadata("nameWithWhitespace.kt")
public void testNameWithWhitespace() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/localClasses/nameWithWhitespace.kt");
try {
doTest(fileName);
}
catch (Throwable ignore) {
return;
}
throw new AssertionError("Looks like this test can be unmuted. Remove IGNORE_BACKEND directive for that.");
}
@TestMetadata("noclosure.kt")
public void testNoclosure() throws Exception {
String fileName = KotlinTestUtils.navigationMetadata("compiler/testData/codegen/box/localClasses/noclosure.kt");