mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
16 lines
201 B
Kotlin
Vendored
16 lines
201 B
Kotlin
Vendored
// !DIAGNOSTICS: -NOTHING_TO_INLINE
|
|
// !LANGUAGE: -InlineProperties
|
|
|
|
inline fun String.test() {
|
|
}
|
|
|
|
inline fun test() {
|
|
}
|
|
|
|
class A {
|
|
inline fun String.test() {
|
|
}
|
|
|
|
inline fun test() {
|
|
}
|
|
} |