Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
resolvedCalls
/
secondaryConstructors
/
explicitPrimaryCallSecondary.kt
blob: de40f1f4548398bdd1d51805dde26494d7161e63 [
file
] [
log
] [
blame
]
class
A
(
x
:
Double
)
{
constructor
(
x
:
Int
)
{
}
constructor
(
x
:
String
)
{
}
}
val v
=
<caret>
A
(
"abc"
)