Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
compiler
/
testData
/
resolvedCalls
/
secondaryConstructors
/
explicitPrimaryArgs.kt
blob: e3e0800967e6a24b6f568057d9c4a1284d8e6fee [
file
]
class
A
(
x
:
Double
)
{
constructor
(
x
:
Int
)
{
}
constructor
(
x
:
String
)
{
}
}
val v
=
<caret>
A
(
1.0
)