From 022a6a6bc9a1d61f190715dec56c3bef31887388 Mon Sep 17 00:00:00 2001 From: Simon Ogorodnik Date: Thu, 11 May 2017 18:29:35 +0300 Subject: Do not publish private companion object members in public only mode #KT-16418 fixed --- core/testdata/classes/privateCompanionObject.kt | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 core/testdata/classes/privateCompanionObject.kt (limited to 'core/testdata') 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 -- cgit