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