Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e74282753ae0fda39015b2d1cc9c31db24bb800c
/
.
/
idea
/
testData
/
codeInsight
/
overrideImplement
/
overrideExtensionProperty.kt.after
blob: 0a5a5a401688052ab99a6ba3737b4e74e704b7d9 [
file
]
interface
A
{
val
String
.
prop
:
Int
}
class
B
:
A
{
override
val
String
.
prop
:
Int
get
()
=
<selection><caret>
throw
UnsupportedOperationException
()</
selection
>
}