Files
kotlin-fork/compiler/testData/psi/DoubleColon_ERR.kt
T
2016-05-26 22:22:41 +03:00

32 lines
239 B
Kotlin
Vendored

fun err0() {
a::b()
}
fun err1() {
a.b::c()
}
fun err2() {
A::
}
fun err3() {
::
}
fun err4() {
::x()
}
fun err5() {
::x()()
}
fun typeArgumentsError() {
::a<b>
::a<b,c<*>>
a::b<c>
::a<b>()
}