Files
kotlin-fork/compiler/testData/diagnostics/tests/sourceCompatibility/inlineFunctionAlways.kt
T

17 lines
218 B
Kotlin
Vendored

// FIR_IDENTICAL
// !DIAGNOSTICS: -NOTHING_TO_INLINE
// !LANGUAGE: -InlineProperties
inline fun String.test() {
}
inline fun test() {
}
class A {
inline fun String.test() {
}
inline fun test() {
}
}