Int is a value class, which is somewhat different than other classes. There is no way to express primitive addition in scala without getting into a recursive definition. For example if the definition of + was,
def +(x: Int): Int = this + x
Then calling + would invoke + which would invoke + which ...
Scala needs to compile the methods on value classes into the java byte codes for addition/subtraction/etc.
The compiler does compile + into the java bytecode for addition, but the scala library authors wrote Int.scala with stub methods to make it a valid scala source file. Those stub methods are never actually invoked.