blob: 378f43509a5d9f7a6024993d3be98c8aac554744 [file] [log] [blame]
//ALLOW_AST_ACCESS
package test
interface Trait {
val shape: String
}
open class Subclass() : Trait {
override open val shape = { "circle" }()
}