mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
10 lines
120 B
Java
10 lines
120 B
Java
class Bar {}
|
|
class Foo {
|
|
static Bar bar;
|
|
}
|
|
class C {
|
|
{
|
|
Bar expr = Foo.bar;
|
|
Bar b = expr;
|
|
}
|
|
} |