ec94893189
Parse type aliases as top-level, member, and local declarations.
11 lines
160 B
Kotlin
Vendored
11 lines
160 B
Kotlin
Vendored
fun foo() {
|
|
out
|
|
1
|
|
@a abstract class foof {}
|
|
abstract @a class foof {}
|
|
|
|
out val foo = 5
|
|
@a var foo = 4
|
|
typealias f = T.() -> Unit
|
|
}
|