Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
newClassExpression
/
newStaticInnerClass.java
blob: 461789214c1eb85c20cb2b9b4f9473ec7e45379d [
file
] [
log
] [
blame
]
//file
package
demo
;
class
Foo
{
static
class
Bar
{}
}
class
User
{
void
main
()
{
Foo
.
Bar
boo
=
new
Foo
.
Bar
();
}
}