mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
16 lines
251 B
Kotlin
Vendored
16 lines
251 B
Kotlin
Vendored
@file:Suppress("UNUSED_VARIABLE")
|
|
package usage
|
|
|
|
import a.*
|
|
|
|
fun baz(param: A) {
|
|
val constructor = A()
|
|
val methodCall = param.hashCode()
|
|
val supertype = object : A() {}
|
|
|
|
val x = foo()
|
|
val y = bar
|
|
bar = 239
|
|
val z: TA = ""
|
|
}
|