additional testdata (following IDEA-CR-8743)

This commit is contained in:
Anna Kozlova
2016-03-03 15:22:36 +01:00
parent 339f9882a3
commit 46c29366cb

View File

@@ -22,5 +22,6 @@ class Test {
strings.forEach((IoFunction<String>) arg -> {throw new IOException();});
strings.forEach((IFunction<String>) arg -> {});
strings.forEach((IIFunction<String>) arg -> {});
strings.forEach((<warning descr="Casting 'arg -> {}' to 'Consumer<String>' is redundant">Consumer<String></warning>) arg -> {});
}
}