765d851b1a
#KT-1736 fixed #KT-1244 fixed #KT-1738 fixed
11 lines
222 B
Plaintext
11 lines
222 B
Plaintext
//KT-1738 Make it possible to define visibility for constructor parameters which become properties
|
|
|
|
package kt1738
|
|
|
|
class A(private var i: Int, var j: Int) {
|
|
}
|
|
|
|
fun test(a: A) {
|
|
a.<!INVISIBLE_MEMBER!>i<!>++
|
|
a.j++
|
|
} |