Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
comments
/
fieldsInitializedFromParams.java
blob: a45ff6372060820113837d1436cbefddb9a75597 [
file
] [
log
] [
blame
]
class
C
{
private
final
int
p1
;
// field p1
/**
* Field myP2
*/
private
final
int
myP2
;
/* Field p3 */
public
int
p3
;
public
C
(
int
p1
/* parameter p1 */
,
int
p2
,
int
p3
)
{
this
.
p1
=
p1
;
myP2
=
p2
;
this
.
p3
=
p3
;
}
}