1e0878cde0
^KT-46860 Fixed
13 lines
327 B
Kotlin
Vendored
13 lines
327 B
Kotlin
Vendored
// FILE: Test.java
|
|
public class Test {
|
|
public static final String FOO = "test";
|
|
}
|
|
|
|
// FILE: test.kt
|
|
fun ff() {
|
|
val a = Test.FOO
|
|
val b = <!NO_COMPANION_OBJECT!>Test<!><!UNEXPECTED_SAFE_CALL!>?.<!>FOO
|
|
System.out.println(a + b)
|
|
<!NO_COMPANION_OBJECT!>System<!><!UNEXPECTED_SAFE_CALL!>?.<!>out.println(a + b)
|
|
}
|