blob: 9400c907ed4a979c6af7fcad7a1dea3987737d0d [file] [log] [blame]
typealias Foo = Int
interface Bar {
fun test(foo: Foo) = Unit
}
class Bar2 : Bar {
override fun test(foo: Foo) {
<selection><caret>super.test(foo)</selection>
}
}