Parse expressions on LHS of '::'

See https://github.com/Kotlin/KEEP/issues/5
This commit is contained in:
Alexander Udalov
2016-04-15 20:01:20 +03:00
parent 7cb61b81ab
commit b5388d6a43
13 changed files with 712 additions and 394 deletions
+17
View File
@@ -0,0 +1,17 @@
fun tests() {
a:: b
a ::b
a :: b
a?:: b
a ?::b
a ?:: b
a? ::b
a ? :: b
a ? ? :: b
}
fun breakLine() {
a?
::b
}