Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
cae7f90b594750d624e94b3325571f4b5ebff2f0
/
.
/
compiler
/
testData
/
resolvedCalls
/
secondaryConstructors
/
overload2.kt
blob: 7f1517014a72eefa60b29fcac11bfc4abfbdd511 [
file
] [
log
] [
blame
]
class
A
{
constructor
(
x
:
Int
)
{
}
constructor
(
x
:
String
)
{
}
}
val v
=
<caret>
A
(
1
)