[UAST] Fix mapping types containing type aliases

#KT-27935 Fixed
This commit is contained in:
Mikhail Zarechenskiy
2020-04-03 20:08:23 +03:00
parent 73e1ddc505
commit 86fd4da567
15 changed files with 106 additions and 13 deletions
@@ -24110,6 +24110,11 @@ public class DiagnosticsTestGenerated extends AbstractDiagnosticsTestWithFirVali
runTest("compiler/testData/diagnostics/tests/typealias/typeAliasInvisibleObject.kt");
}
@TestMetadata("typeAliasIsUsedAsATypeArgumentInOtherAlias.kt")
public void testTypeAliasIsUsedAsATypeArgumentInOtherAlias() throws Exception {
runTest("compiler/testData/diagnostics/tests/typealias/typeAliasIsUsedAsATypeArgumentInOtherAlias.kt");
}
@TestMetadata("typeAliasNotNull.kt")
public void testTypeAliasNotNull() throws Exception {
runTest("compiler/testData/diagnostics/tests/typealias/typeAliasNotNull.kt");
@@ -24030,6 +24030,11 @@ public class DiagnosticsUsingJavacTestGenerated extends AbstractDiagnosticsUsing
runTest("compiler/testData/diagnostics/tests/typealias/typeAliasInvisibleObject.kt");
}
@TestMetadata("typeAliasIsUsedAsATypeArgumentInOtherAlias.kt")
public void testTypeAliasIsUsedAsATypeArgumentInOtherAlias() throws Exception {
runTest("compiler/testData/diagnostics/tests/typealias/typeAliasIsUsedAsATypeArgumentInOtherAlias.kt");
}
@TestMetadata("typeAliasNotNull.kt")
public void testTypeAliasNotNull() throws Exception {
runTest("compiler/testData/diagnostics/tests/typealias/typeAliasNotNull.kt");