The following is not the syntax
genericMethod()
It seems the type arguments must come after a dot as in
SomeClass.genericMethod()
this.genericMethod()
p.genericMethod()
super.genericMethod()
SomeClass.super.genericMethod()
SomeClass.this.genericMethod()