aboutsummaryrefslogtreecommitdiff
path: root/test/data/format/inheritedExtensions.kt
blob: e38fe00d3808c60d7fd725822c793738db01b5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
open class Foo

class Bar : Foo()

fun Foo.first() {

}

fun Bar.second() {

}