diff options
Diffstat (limited to 'core/testdata/format/inheritedLink.kt')
-rw-r--r-- | core/testdata/format/inheritedLink.kt | 11 |
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 |