Files
kotlin-fork/compiler/testData/psi/DoubleColon_ERR.kt
T
2016-04-19 18:28:24 +03:00

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
}