Added tests on link stage (disabled for now).

This commit is contained in:
Igor Chevdar
2017-03-27 11:28:02 +03:00
parent 6381b4d831
commit 00e452bcdf
4 changed files with 20 additions and 2 deletions
@@ -0,0 +1,3 @@
package a
inline fun foo(x: Int, y: Int = 117) = x + y
@@ -0,0 +1,6 @@
import a.*
fun main(args: Array<String>) {
println(foo(5))
println(foo(5, 42))
}