TESTS: new tests added
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
@Suppress("NOTHING_TO_INLINE")
|
||||
inline fun foo(vararg args: Int) {
|
||||
for (a in args) {
|
||||
println(a.toString())
|
||||
}
|
||||
}
|
||||
|
||||
fun bar() {
|
||||
foo(1, 2, 3)
|
||||
}
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
bar()
|
||||
}
|
||||
Reference in New Issue
Block a user