cls: ensure canonical text don't miss whitespaces around wildcards (IDEA-146452)

This commit is contained in:
Anna Kozlova
2015-10-16 16:44:27 +02:00
parent cf7481f862
commit ffa42cda83
5 changed files with 34 additions and 13 deletions
@@ -0,0 +1,11 @@
package com.badinterface;
import java.util.List;
import java.util.concurrent.Future;
class Test {
private void foo(BadInterface2 b, BadInterface3 b3) {
final Future<? extends Number> process = b.process();
final Future<? extends List<? extends Number>> process3 = b3.process();
}
}