// "Create method 'foo'" "true" interface Generic { List> foo(); } class Usage { List> usage(Generic g) { return g.foo(); } }