Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
compiler
/
testData
/
psi
/
secondaryConstructors
/
basic.kt
blob: 02402a62e28f16e3ba31d129417338b38b1c2ebb [
file
] [
log
] [
blame
]
class
A
{
constructor
()
{}
val x
:
Int
private
@annot
constructor
(
x
:
Int
)
{}
@constructor
fun constructor
()
{}
@annot
protected
constructor
(
x
:
Int
,
y
:
Int
)
:
this
(
1
,
2
)
{}
@[
constructor
]
public
constructor
()
:
super
()
{
x
=
1
}
}
@constructor
class
B