Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
enum
/
implicitlyPrivateConstructorsEnum.java
blob: 3a1e74e03d15be8be414f8c33fb993a52744de5a [
file
] [
log
] [
blame
]
public
enum
JavaEnum
{
A
(
"a"
),
B
;
JavaEnum
(
String
x
)
{
this
.
x
=
x
;
}
JavaEnum
()
{
this
.
x
=
"default"
;
}
protected
String
x
;
}