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