mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
'a<T>::foo' is reserved if 'a' is a simple name and can be resolved as an expression (this can be extended to 'a.b.c<T>::foo' case, although that is rather hard to implement using PSI). 'a?::foo' is reserved if 'a' can be resolved as an expression.
8 lines
174 B
Plaintext
Vendored
8 lines
174 B
Plaintext
Vendored
package
|
|
|
|
package test {
|
|
public val test1: kotlin.reflect.KFunction0<kotlin.Unit>
|
|
public fun nullableFun(): kotlin.Int?
|
|
public fun kotlin.Int.foo(): kotlin.Unit
|
|
}
|