aboutsummaryrefslogtreecommitdiff
path: root/test/data/format/inheritedExtensions.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/format/inheritedExtensions.kt')
-rw-r--r--test/data/format/inheritedExtensions.kt11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/data/format/inheritedExtensions.kt b/test/data/format/inheritedExtensions.kt
new file mode 100644
index 00000000..e38fe00d
--- /dev/null
+++ b/test/data/format/inheritedExtensions.kt
@@ -0,0 +1,11 @@
+open class Foo
+
+class Bar : Foo()
+
+fun Foo.first() {
+
+}
+
+fun Bar.second() {
+
+}