GuessManagerImpl: type inference fixes

This commit is contained in:
Tagir Valeev
2018-01-29 16:40:51 +07:00
parent 97aa63f410
commit d0f2bde3a8
6 changed files with 66 additions and 6 deletions
@@ -0,0 +1,8 @@
class Foo {
void test(List<String> list, boolean b) {
if (b) {
list = new ArrayList<>();
}
System.out.println(list.trimTo<caret>);
}
}