Out of curiosity I tried to run the following:
def someFun[_](a:Int) = a
To my surprise, no errors or warnings got issued and it runs the way you expect it to (which is fine I suppose) but is it normal that the compiler does not understand the redundancy of the type parameter or perhaps it means something that makes it (semantically?) different from this:
def someFun(a:Int) = a