0bb97cf590
#KT-12208 Obsolete
17 lines
179 B
Kotlin
Vendored
17 lines
179 B
Kotlin
Vendored
fun normalFunction() {
|
|
|
|
}
|
|
|
|
inline fun inlineFunction() {
|
|
|
|
}
|
|
|
|
fun test1() {
|
|
inlineFunction()
|
|
test.lineNumber()
|
|
}
|
|
|
|
fun test2() {
|
|
normalFunction()
|
|
test.lineNumber()
|
|
} |