Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
417088e15084daef5c72bc17ea66d3cf3c026c33
/
.
/
compiler
/
testData
/
compileJavaAgainstKotlin
/
targets
/
setterVisability.kt
blob: 8f4ff5b17dbf2904d999ad022e7b70982b7d3896 [
file
]
// ISSUE: KT-65004
package
setterVisability
abstract
class
ChatViewModel
{
protected
abstract
val chatId
:
Long
?
}
class
ChatGroupViewModel
:
ChatViewModel
()
{
override
var
chatId
:
Long
=
TODO
()
}