Consider the following: ```groovy package p trait T { Map<String, ? extends Number> map } ``` ```groovy class C implements p.T { void m() { map } } ``` The type arguments of "map" are not shown. Only "Map" is displayed. 
Consider the following:
The type arguments of "map" are not shown. Only "Map" is displayed.