Test IC for adding private inline function

#KT-9681 fixed
This commit is contained in:
Alexey Tsvetkov
2016-03-04 15:10:07 +03:00
parent 9523a8b88d
commit a3893a3c2e
7 changed files with 72 additions and 0 deletions
@@ -0,0 +1,10 @@
package foo
fun test() {
oldInlineFun()
}
inline
private fun oldInlineFun() {
println("oldInlineFun")
}