Files
Bas Leijdekkersandintellij-monorepo-bot 455e32759f Java: nicer quick-fix text
GitOrigin-RevId: 1194b033814fac3bdf672e8d3a4d7ccefc4dc35a
2025-09-25 18:47:50 +00:00

9 lines
222 B
Java

// "Add 'String' as 2nd parameter to method 'get()'" "true-preview"
import java.util.List;
class Test<T> {
public LazyVal(final List<T> ts) {
get(ts, "");
}
public static <T1> void get(List<T1> l, String s) {}
}