29 lines
239 B
Kotlin
Vendored
29 lines
239 B
Kotlin
Vendored
fun err0() {
|
|
a::b()
|
|
}
|
|
|
|
fun err1() {
|
|
a.b::c()
|
|
}
|
|
|
|
fun err2() {
|
|
A::
|
|
}
|
|
|
|
fun err3() {
|
|
::
|
|
}
|
|
|
|
fun typeArgumentsError() {
|
|
::a<b>
|
|
::a<b,c<*>>
|
|
a::b<c>
|
|
|
|
::a<b>()
|
|
}
|
|
|
|
fun expressionsOnLHS() {
|
|
a::b.c::d
|
|
A::a::b
|
|
}
|