LightClassTest: test corner cases related to inherited visiblity

EA-99155
 #KT-16899 Fixed
This commit is contained in:
Pavel V. Talanov
2017-03-24 15:08:15 +03:00
parent 4b85fd9fbe
commit a81bac0b50
18 changed files with 184 additions and 45 deletions
@@ -0,0 +1,10 @@
// PrivateInTrait
interface PrivateInTrait {
private var nn: String
get() = ""
set(value) {}
private val n: String?
get() = ""
private fun bar(a: String, b: String?): String?
}