Minor, restructure parsing test case for '::'
This commit is contained in:
+28
@@ -0,0 +1,28 @@
|
||||
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
|
||||
}
|
||||
Reference in New Issue
Block a user