K1: report warning for inline virtual member in enum #KT-53148 Fixed
Related to KT-34372
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
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()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user