Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
c234f72ea4dcebd1ff29c5a1fcd540f29a83be46
/
.
/
analysis
/
low-level-api-fir
/
testData
/
lazyResolve
/
secondaryConstructorParameterScript.kts
blob: 28bc6b23f6e79e1f15756c30b093a504ff603e84 [
file
]
class
A
(
val prop
:
Int
=
42
,
c
:
String
)
{
constructor
(
st
<caret>
r
:
String
)
:
this
(
str
.
myToInt
(),
str
)
fun foo
()
=
"str"
}
fun
String
.
myToInt
():
Int
=
42