[java] fix spaces in test data

GitOrigin-RevId: d18a60e9f966bf88b2fc2504cc1386606a980941
This commit is contained in:
Anna Kozlova
2022-07-08 14:24:23 +02:00
committed by intellij-monorepo-bot
parent 7d45076990
commit 79200753fb

View File

@@ -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) { }
}