blob: 3cc03f9780f3814f7757ae1e527099621397dac9 [file] [log] [blame]
//file
package demo;
class TestT {
<T> void getT() { }
}
class U {
void main() {
TestT t = new TestT();
t.<String>getT();
t.<Integer>getT();
t.getT();
}
}