Added tests on link stage (disabled for now).
This commit is contained in:
@@ -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))
|
||||
}
|
||||
Reference in New Issue
Block a user