Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
enum
/
companionObject.java
blob: 2de0e8c947b289d11aae43515d9c4cbede816848 [
file
] [
log
] [
blame
]
public
enum
TestEnum
{
A
,
B
;
public
static
TestEnum
parse
()
{
return
A
;
}
}
class
Go
{
void
fn
()
{
TestEnum
x
=
TestEnum
.
parse
();
}
}