blob: b2e4a426134262d4d3b2ee70a2254ebd3650d708 [file] [log] [blame]
typealias Foo = Int
interface Bar {
fun test(foo: Foo) = Unit
}
class Bar2 : Bar {
<caret>
}