mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-06 03:21:12 +07:00
[java] fix spaces in test data
GitOrigin-RevId: d18a60e9f966bf88b2fc2504cc1386606a980941
This commit is contained in:
committed by
intellij-monorepo-bot
parent
7d45076990
commit
79200753fb
@@ -1,11 +1,12 @@
|
||||
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="'O(java.lang.Object)' in 'R.O' cannot be applied to '()'">()</error>);
|
||||
}
|
||||
static class O {
|
||||
public O(<error descr="'R.this' cannot be referenced from a static context">T</error> t) {
|
||||
}
|
||||
}
|
||||
|
||||
private static void test(R.O o) {}
|
||||
public static void main(String[] args) {
|
||||
test(new R<>.O<error descr="'O(java.lang.Object)' in 'R.O' cannot be applied to '()'">()</error>);
|
||||
}
|
||||
|
||||
private static void test(R.O o) { }
|
||||
}
|
||||
Reference in New Issue
Block a user