diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-02-09 03:15:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-09 03:15:52 +0100 |
commit | 7546efb83afa39770be5c7b9df72edc115e59a5b (patch) | |
tree | 0066c2b9e833e7dd7fd8cfafc3a1d05d15f40000 /core/testdata/format/inheritedCompanionObjectProperties.kt | |
parent | 683f6bb418bada9c90d2ffbd5040b3968e1c3522 (diff) | |
download | dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.tar.gz dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.tar.bz2 dokka-7546efb83afa39770be5c7b9df72edc115e59a5b.zip |
Remove old test data (#2824)
Diffstat (limited to 'core/testdata/format/inheritedCompanionObjectProperties.kt')
-rw-r--r-- | core/testdata/format/inheritedCompanionObjectProperties.kt | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/core/testdata/format/inheritedCompanionObjectProperties.kt b/core/testdata/format/inheritedCompanionObjectProperties.kt deleted file mode 100644 index 74a3749c..00000000 --- a/core/testdata/format/inheritedCompanionObjectProperties.kt +++ /dev/null @@ -1,18 +0,0 @@ -open class A { - fun foo() { - } -} - -open class B { - fun bar() { - } -} - -class C : A { - fun xyzzy() { - } - - companion object : B () { - fun shazam() - } -} |