// "Create method 'get'" "true" class W { public T get(T s) { return null; } } class C { void foo () { W w = new W(); String s = w.get(""); } }