Minor: expand dsl highlighting test cases to cover member functions

This commit is contained in:
Pavel V. Talanov
2018-08-01 20:27:40 +02:00
parent e9a9f2a1aa
commit 3d91d4b865
2 changed files with 20 additions and 2 deletions
+10
View File
@@ -21,6 +21,12 @@ fun g() {
}
@A
class AC {
@A
fun a() = ""
}
fun test() {
f() // 4
@@ -31,4 +37,8 @@ fun test() {
g() // 1
ff() // 4
with (A()) {
a() // 4
}
}