K2: reproduce KT-59140
This commit is contained in:
committed by
Space Team
parent
c2fde1a915
commit
18206210cf
+6
@@ -20174,6 +20174,12 @@ public class DiagnosticCompilerTestFE10TestdataTestGenerated extends AbstractDia
|
|||||||
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("staticImportViaInheritance.kt")
|
||||||
|
public void testStaticImportViaInheritance() throws Exception {
|
||||||
|
runTest("compiler/testData/diagnostics/tests/j+k/staticImportViaInheritance.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
||||||
public void testStaticMembersFromSuperclasses() throws Exception {
|
public void testStaticMembersFromSuperclasses() throws Exception {
|
||||||
|
|||||||
+6
@@ -20174,6 +20174,12 @@ public class LLFirPreresolvedReversedDiagnosticCompilerFE10TestDataTestGenerated
|
|||||||
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("staticImportViaInheritance.kt")
|
||||||
|
public void testStaticImportViaInheritance() throws Exception {
|
||||||
|
runTest("compiler/testData/diagnostics/tests/j+k/staticImportViaInheritance.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
||||||
public void testStaticMembersFromSuperclasses() throws Exception {
|
public void testStaticMembersFromSuperclasses() throws Exception {
|
||||||
|
|||||||
+6
@@ -20174,6 +20174,12 @@ public class FirLightTreeOldFrontendDiagnosticsTestGenerated extends AbstractFir
|
|||||||
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("staticImportViaInheritance.kt")
|
||||||
|
public void testStaticImportViaInheritance() throws Exception {
|
||||||
|
runTest("compiler/testData/diagnostics/tests/j+k/staticImportViaInheritance.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
||||||
public void testStaticMembersFromSuperclasses() throws Exception {
|
public void testStaticMembersFromSuperclasses() throws Exception {
|
||||||
|
|||||||
+6
@@ -20180,6 +20180,12 @@ public class FirPsiOldFrontendDiagnosticsTestGenerated extends AbstractFirPsiDia
|
|||||||
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("staticImportViaInheritance.kt")
|
||||||
|
public void testStaticImportViaInheritance() throws Exception {
|
||||||
|
runTest("compiler/testData/diagnostics/tests/j+k/staticImportViaInheritance.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
||||||
public void testStaticMembersFromSuperclasses() throws Exception {
|
public void testStaticMembersFromSuperclasses() throws Exception {
|
||||||
|
|||||||
@@ -0,0 +1,21 @@
|
|||||||
|
// ISSUE: KT-59140
|
||||||
|
|
||||||
|
// FILE: pkg/Foo.java
|
||||||
|
|
||||||
|
package pkg;
|
||||||
|
|
||||||
|
abstract class CommonFoo {
|
||||||
|
public static final int BAR = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Foo extends CommonFoo {}
|
||||||
|
|
||||||
|
// FILE: test.kt
|
||||||
|
|
||||||
|
import pkg.Foo
|
||||||
|
import pkg.Foo.BAR
|
||||||
|
|
||||||
|
fun test() {
|
||||||
|
val bar = <!INVISIBLE_REFERENCE!>BAR<!>
|
||||||
|
val fooBar = Foo.BAR
|
||||||
|
}
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
// ISSUE: KT-59140
|
||||||
|
|
||||||
|
// FILE: pkg/Foo.java
|
||||||
|
|
||||||
|
package pkg;
|
||||||
|
|
||||||
|
abstract class CommonFoo {
|
||||||
|
public static final int BAR = 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
public class Foo extends CommonFoo {}
|
||||||
|
|
||||||
|
// FILE: test.kt
|
||||||
|
|
||||||
|
import pkg.Foo
|
||||||
|
import pkg.Foo.BAR
|
||||||
|
|
||||||
|
fun test() {
|
||||||
|
val bar = BAR
|
||||||
|
val fooBar = Foo.BAR
|
||||||
|
}
|
||||||
Generated
+6
@@ -20180,6 +20180,12 @@ public class DiagnosticTestGenerated extends AbstractDiagnosticTest {
|
|||||||
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
runTest("compiler/testData/diagnostics/tests/j+k/specialBridges.kt");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@TestMetadata("staticImportViaInheritance.kt")
|
||||||
|
public void testStaticImportViaInheritance() throws Exception {
|
||||||
|
runTest("compiler/testData/diagnostics/tests/j+k/staticImportViaInheritance.kt");
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
@TestMetadata("StaticMembersFromSuperclasses.kt")
|
||||||
public void testStaticMembersFromSuperclasses() throws Exception {
|
public void testStaticMembersFromSuperclasses() throws Exception {
|
||||||
|
|||||||
Reference in New Issue
Block a user