mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-05 02:24:00 +07:00
GitOrigin-RevId: a17a5f0f3878b9baf211737a614d1aa1a5103d31
12 lines
303 B
Java
12 lines
303 B
Java
class R<T> {
|
|
static class O {
|
|
public O(<error descr="'R.this' cannot be referenced from a static context">T</error> t) {
|
|
}
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
test(new R<>.O<error descr="Expected 1 argument but found 0">()</error>);
|
|
}
|
|
|
|
private static void test(R.O o) { }
|
|
} |