Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
overrideMutableExtensionProperty.kt.after
blob: ad024669fdc53327a9262a068e920a090b8ac5ad [
file
]
interface
A
{
var
Int
.
foo
:
Double
}
class
B
:
A
{
override
var
Int
.
foo
:
Double
get
()
=
<selection><caret>
throw
UnsupportedOperationException
()</
selection
>
set
(
value
)
{
}
}