Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
fc95605a393f931d6a85ae993728de35cb600abb
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
prop
/
TraitFinalVar.kt
blob: 211ad5593f7e6e238b55ddad4e1822a90175bc4c [
file
]
// KT-2228
package
test
interface
A
{
var
v
:
String
get
()
=
"test"
set
(
value
)
{
throw
UnsupportedOperationException
()
}
}