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