Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
prop
/
VarDelegationToTraitImpl.kt
blob: 68cb487a80faf59dbab9830af3f70aadc3818720 [
file
]
package
test
// test composed from KT-2193
interface
A
{
open
var
v
:
String
get
()
=
"test"
set
(
value
)
{
throw
UnsupportedOperationException
()
}
}
class
B
()
:
A