blob: 1bc427f3e74e189f81b39b6c46348545ba0f4640 [file] [log] [blame]
package test0036;
public class X<T> {
public X() {
this.<T>foo();
}
public <T> void foo() {
}
}