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