mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
12 lines
236 B
Kotlin
Vendored
12 lines
236 B
Kotlin
Vendored
// FILE: A.java
|
|
public class A {
|
|
public static void foo() {}
|
|
public static class Nested {}
|
|
}
|
|
|
|
// FILE: B.kt
|
|
fun Any?.bar() = 42
|
|
|
|
fun f1() = A.<!UNRESOLVED_REFERENCE!>bar<!>()
|
|
fun f2() = A.Nested.<!UNRESOLVED_REFERENCE!>bar<!>()
|