On Sep 12, 2015 16:57, "Andrea Faulds" <a...@ajf.me> wrote: > > > I'm with Levi here, I think type parameters should matter for static methods. An example might be a list class: >
Just because you want it, doesn't make it possible ;-) The class type variables are specified when instantiating the class. Since you don't do that for static methods, the runtime has no information about which type was specified at the time the static method is called. - Stig