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