// "Create method 'get'" "true" class Generic { public T get() { return null; } } class WWW { void foo (Generic p) { E e = p.get(); } }