Changed extension in parsing test data (jet -> kt)
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
fun ok() {
|
||||
A::a
|
||||
A::a + 1
|
||||
Map<String, Int>::size
|
||||
|
||||
::a
|
||||
|
||||
a.b::c
|
||||
a::b.c
|
||||
a.b::c.d
|
||||
|
||||
a<b>::c
|
||||
a<b>::c.d
|
||||
a.b<c>::d
|
||||
a.b<c>::d.e
|
||||
a.b<c.d>::e
|
||||
a.b<c.d>::e.d
|
||||
a.b<c.d<e.f>>::g.h
|
||||
|
||||
a.b.c<d>.e<f>.g::h
|
||||
|
||||
a::b()
|
||||
(a::b)()
|
||||
a.(b::c)()
|
||||
a.b::c()
|
||||
}
|
||||
|
||||
fun err0() {
|
||||
a::b.c::d
|
||||
}
|
||||
|
||||
fun err1() {
|
||||
A::
|
||||
}
|
||||
|
||||
fun err2() {
|
||||
A::a::b
|
||||
}
|
||||
|
||||
fun err3() {
|
||||
::
|
||||
}
|
||||
Reference in New Issue
Block a user