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