0b53ffe4d8
Conflicts: generators/org/jetbrains/jet/generators/tests/GenerateTests.java
14 lines
168 B
Kotlin
14 lines
168 B
Kotlin
trait A {
|
|
val foo: String
|
|
}
|
|
|
|
trait Z {
|
|
val foo: String
|
|
}
|
|
|
|
class B: A, Z {
|
|
override val <caret>foo: String
|
|
get() {
|
|
return "B"
|
|
}
|
|
} |