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