Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
b32f408767cf86efaa65eb02699fe00bd61d99a6
/
.
/
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
()
}
}