07ff53d456
otherwise I have to rollback dozens of files after using sed that follows conventions
11 lines
148 B
Plaintext
11 lines
148 B
Plaintext
// KT-316 Members of traits must be open by default
|
|
|
|
trait B {
|
|
fun bar() {}
|
|
fun foo() {}
|
|
}
|
|
|
|
open class A() : B{
|
|
override fun foo() {}
|
|
}
|