Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
convertClassToSealedClass
/
notPrivateSecondaryConstructor.kt
blob: d72d774740704a1691f0806ad832dc15bb2c7e85 [
file
] [
log
] [
blame
]
// IS_APPLICABLE: false
open
class
Test
<caret>
private
constructor
()
{
constructor
(
i
:
Int
)
:
this
()
{
}
}