0b53ffe4d8
Conflicts: generators/org/jetbrains/jet/generators/tests/GenerateTests.java
10 lines
139 B
Kotlin
10 lines
139 B
Kotlin
trait B {
|
|
public val foo: String
|
|
}
|
|
|
|
class D: B {
|
|
public override val foo: String
|
|
get() {
|
|
return "D"
|
|
}
|
|
} |