Fix incorrect 'original' in property accessors
#KT-3930 Fixed
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
interface A {
|
||||
val str: String
|
||||
get() = "OK"
|
||||
}
|
||||
|
||||
interface B : A
|
||||
|
||||
class Impl : B
|
||||
|
||||
fun box() = Impl().str
|
||||
Reference in New Issue
Block a user