Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
resolveConstructorDelegationCalls
/
thisSecondary.kt
blob: 9f1ef640d3f46a4dd00dcd0afb268e5e2383d754 [
file
] [
log
] [
blame
]
class
A
{
constructor
(
x
:
Int
)
{}
<caret>
constructor
():
this
(
1
)
{}
}