UAST: Complex test data moved to separate file (KT-20990)

This commit is contained in:
Nicolay Mitropolsky
2017-11-06 13:16:19 +01:00
committed by xiexed
parent 9730d50e10
commit fab8187574
7 changed files with 109 additions and 48 deletions
-10
View File
@@ -3,13 +3,3 @@ val bar = "ipsum"
val baz = "dolor"
val foobarbaz = "$foo $bar $baz"
val case4 = "a ${"literal"} z"
fun simpleForTemplate(i: Int = 0) = "$i"
fun foo() {
println("$baz")
val template1 = "${simpleForTemplate()}"
val template2 = ".${simpleForTemplate()}"
}