475e40b3e4
Related to KT-34372
13 lines
293 B
Kotlin
Vendored
13 lines
293 B
Kotlin
Vendored
enum class Some {
|
|
A {
|
|
<!OVERRIDE_BY_INLINE!>override fun foo(s: () -> String): String<!> {
|
|
return s() + s()
|
|
}
|
|
};
|
|
|
|
//SHOULD BE ERROR REPORTED
|
|
open <!DECLARATION_CANT_BE_INLINED!>inline<!> fun foo(s: () -> String): String {
|
|
return s()
|
|
}
|
|
}
|