mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
17 lines
159 B
Kotlin
Vendored
17 lines
159 B
Kotlin
Vendored
// FILE: Foo.kt
|
|
|
|
package test
|
|
|
|
class Foo {
|
|
fun bar() {}
|
|
}
|
|
|
|
// FILE: test.kt
|
|
|
|
import test.Foo
|
|
|
|
fun Foo(): String = ""
|
|
|
|
val f = Foo::bar
|
|
val g = Foo::length
|