Fix for KT-5495: Support method implementations in local traits
#KT-5495 Fixed
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun box(): String {
|
||||
trait A {
|
||||
fun foo() = "OK"
|
||||
}
|
||||
|
||||
class B : A
|
||||
|
||||
return B().foo()
|
||||
}
|
||||
Reference in New Issue
Block a user