Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 
share|improve this question

1 Answer

The compiler generates this:

def someFun(a: Int): Int = a;

But this is not because the compiler knows that this is unused, but because of the type erasure. You can check things like this with the -print option of the compiler. It is also not surprising, that this works, because it is just an unused type parameter.

share|improve this answer
1  
+1 for the "-print" – ashy_32bit Jun 8 '12 at 6:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.