Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
resolvedCalls
/
secondaryConstructors
/
overload1.kt
blob: e5ba8e0f1445a9cbe08c38de703144759032b58b [
file
]
class
A
{
constructor
(
x
:
Int
)
{
}
constructor
(
x
:
String
)
{
}
}
val v
=
<caret>
A
(
"abc"
)