blob: 1feb516e6b0f808d55510fc046cf451a312c39c2 [file] [log] [blame]
abstract class C {
<T> void foo(Object s){ }
abstract String foo(String s);
{
this.<String>foo("").toLowerCase();
}
}