blob: 99623c4fdf087333c2e732744966452828b97e12 [file] [log] [blame]
// "Add 'Foo<TypeParamName>' as 1st parameter to method 'bar'" "true"
public class Bar {
static void bar(String args) {
}
}
class Foo<TypeParamName> {
void bar() {
Bar.bar(th<caret>is, "");
}
}