Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
scopes
/
invisibleSetter.kt
blob: 7d05e771cff79d583af1d6738307fcda287c2b9c [
file
]
class
A
<
T
>
{
public
var
x
:
Int
=
0
private
set
}
fun main
()
{
val a
=
A
<
Any
>()
<!
INVISIBLE_SETTER
!>
a
.
x
<!>
=
1
}