mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-23 19:42:48 +07:00
dc51016e34
GitOrigin-RevId: e135c45026fc852ace913a57689380c5175f766e
9 lines
148 B
Java
9 lines
148 B
Java
// "Create inner class 'Foo'" "true"
|
|
public class Test {
|
|
boolean foo(Object o) {
|
|
return o instanceof Foo;
|
|
}
|
|
|
|
private class Foo {
|
|
}
|
|
} |