Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
j2k
/
testData
/
fileOrElement
/
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
();
}
}