diff options
Diffstat (limited to 'core/testdata/classes')
-rw-r--r-- | core/testdata/classes/privateCompanionObject.kt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/core/testdata/classes/privateCompanionObject.kt b/core/testdata/classes/privateCompanionObject.kt new file mode 100644 index 00000000..df43b5f9 --- /dev/null +++ b/core/testdata/classes/privateCompanionObject.kt @@ -0,0 +1,11 @@ +package p + +class Clz { + private companion object { + fun fuun() { + + } + + val aaaa = 0 + } +}
\ No newline at end of file |