aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/inheritedLink.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/format/inheritedLink.kt')
-rw-r--r--core/testdata/format/inheritedLink.kt11
1 files changed, 11 insertions, 0 deletions
diff --git a/core/testdata/format/inheritedLink.kt b/core/testdata/format/inheritedLink.kt
new file mode 100644
index 00000000..86b8f4e2
--- /dev/null
+++ b/core/testdata/format/inheritedLink.kt
@@ -0,0 +1,11 @@
+package p2
+
+import p1.Foo
+
+class FooBar : Foo {
+
+ override fun sayHello(): String {
+ return "Hello!"
+ }
+
+} \ No newline at end of file