Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
codeInsight
/
outOfBlock
/
StringInSuperConstroctorCall.kt
blob: c8ea84f37ce5f2fce99503d29cf488f75b2e46b0 [
file
]
// OUT_OF_CODE_BLOCK: FALSE
abstract
class
S
(
val f
:
()
->
Unit
)
fun foo
(
s
:
String
,
f
:
()
->
Unit
)
{}
class
ST
:
S
(
{
foo
(
"a <caret>test calculator"
)
{
}
})