Sign in
apache
/
netbeans
/
5de8e61a014f4f50903e681036d8751361c83460
/
.
/
java
/
java.editor
/
test
/
qa-functional
/
data
/
CC15Tests
/
src
/
test8
/
CCTest8iii.java
blob: 4718c005c8f4bfc35aac65773d8cafa5372f2000 [
file
] [
log
] [
blame
]
package
test8
;
public
class
CCTest8iii
{
public
static
void
main
(
String
[]
args
)
{
InnerEnum
e
;
//Check that InnerEnum is in the CC
e
=
InnerEnum
.
A
;
//Check the CC provided after the dot
}
private
static
enum
InnerEnum
{
A
,
B
,
C
}
}