Supported inline function for expression body case

This commit is contained in:
Valentin Kipyatkov
2016-10-19 22:16:59 +03:00
parent 67e5ed802f
commit 57411b4d5e
16 changed files with 202 additions and 3 deletions
@@ -0,0 +1,5 @@
fun <caret>f() = "foo"
fun main(args: Array<String>) {
println(f() + f())
}