[FakeOverrideBuilder] Workaround KT-64743

Because of KT-64743 there is unexpanded type-alias in a place we don't
expect it to occur. To workaround this, we just expand typialiases in
one more place.

^KT-64743
This commit is contained in:
Pavel Kunyavskiy
2024-01-05 14:39:39 +01:00
committed by Space Team
parent c0f0c595c3
commit c6e32571d6
12 changed files with 96 additions and 5 deletions
@@ -24417,6 +24417,12 @@ public class FirWasmCodegenBoxTestGenerated extends AbstractFirWasmCodegenBoxTes
runTest("compiler/testData/codegen/box/multiplatform/k2/actualInnerClassesFirMemberMapping.kt");
}
@Test
@TestMetadata("aliasSuperTypeInLazy.kt")
public void testAliasSuperTypeInLazy() throws Exception {
runTest("compiler/testData/codegen/box/multiplatform/k2/aliasSuperTypeInLazy.kt");
}
@Test
public void testAllFilesPresentInK2() throws Exception {
KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("compiler/testData/codegen/box/multiplatform/k2"), Pattern.compile("^([^_](.+))\\.kt$"), null, TargetBackend.WASM, true);