Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
outOfBlock
/
InPropertyAccessorWithoutInferenceInClass.kt
blob: f2037cc3d674aa6df1b225d50506b5540058363b [
file
]
// OUT_OF_CODE_BLOCK: FALSE
// ERROR: Unresolved reference: foao
class
A
{
fun foo
():
Int
=
12
}
class
B
(
val a
:
A
)
{
val prop1
:
Int
get
()
=
a
.
fo
<caret>
o
()
}