Don't generate private members in interface

This commit is contained in:
Michael Bogdanov
2015-09-22 17:28:11 +03:00
parent 2e6b56691c
commit cf57d56ab3
10 changed files with 98 additions and 18 deletions

View File

@@ -0,0 +1,17 @@
interface A {
private val prop: String
get() = "1"
private fun foo() {
}
private fun defaultFun(p: String = "OK") {
}
}
// 1 foo
// 1 getProp
// 1 defaultFun\$