mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
8 lines
233 B
Java
8 lines
233 B
Java
class Foo {
|
|
static class Bar {
|
|
static final String s = <error descr="Non-static method 'toString()' cannot be referenced from a static context">toString</error>(1);
|
|
}
|
|
static String toString(int x) {
|
|
return x + "";
|
|
}
|
|
} |