f8ac8f727e
Now this test also checks situation when several class files with inline functions are emitted from one source file.
7 lines
141 B
Kotlin
7 lines
141 B
Kotlin
package usage
|
|
|
|
fun main(args: Array<String>) {
|
|
inline.f { println("to be inlined") }
|
|
inline.Klass().f { println("to be inlined") }
|
|
}
|