package scala
final class Int extends AnyVal {
def toByte: Byte = sys.error("stub")
def toShort: Short = sys.error("stub")
def toChar: Char = sys.error("stub")
def toInt: Int = sys.error("stub")
def toLong: Long = sys.error("stub")
def toFloat: Float = sys.error("stub")
def toDouble: Double = sys.error("stub")
def unary_+ : Int = sys.error("stub")
def unary_- : Int = sys.error("stub")
def unary_~ : Int = sys.error("stub")
def +(x: String): String = sys.error("stub")
def <<(x: Int): Int = sys.error("stub")
def <<(x: Long): Int = sys.error("stub")
def >>>(x: Int): Int = sys.error("stub")
def >>>(x: Long): Int = sys.error("stub")
def >>(x: Int): Int = sys.error("stub")
def >>(x: Long): Int = sys.error("stub")
def ==(x: Byte): Boolean = sys.error("stub")
def ==(x: Short): Boolean = sys.error("stub")
def ==(x: Char): Boolean = sys.error("stub")
def ==(x: Int): Boolean = sys.error("stub")
def ==(x: Long): Boolean = sys.error("stub")
def ==(x: Float): Boolean = sys.error("stub")
def ==(x: Double): Boolean = sys.error("stub")
def !=(x: Byte): Boolean = sys.error("stub")
def !=(x: Short): Boolean = sys.error("stub")
def !=(x: Char): Boolean = sys.error("stub")
def !=(x: Int): Boolean = sys.error("stub")
def !=(x: Long): Boolean = sys.error("stub")
def !=(x: Float): Boolean = sys.error("stub")
def !=(x: Double): Boolean = sys.error("stub")
def <(x: Byte): Boolean = sys.error("stub")
def <(x: Short): Boolean = sys.error("stub")
def <(x: Char): Boolean = sys.error("stub")
def <(x: Int): Boolean = sys.error("stub")
def <(x: Long): Boolean = sys.error("stub")
def <(x: Float): Boolean = sys.error("stub")
def <(x: Double): Boolean = sys.error("stub")
def <=(x: Byte): Boolean = sys.error("stub")
def <=(x: Short): Boolean = sys.error("stub")
def <=(x: Char): Boolean = sys.error("stub")
def <=(x: Int): Boolean = sys.error("stub")
def <=(x: Long): Boolean = sys.error("stub")
def <=(x: Float): Boolean = sys.error("stub")
def <=(x: Double): Boolean = sys.error("stub")
def >(x: Byte): Boolean = sys.error("stub")
def >(x: Short): Boolean = sys.error("stub")
def >(x: Char): Boolean = sys.error("stub")
def >(x: Int): Boolean = sys.error("stub")
def >(x: Long): Boolean = sys.error("stub")
def >(x: Float): Boolean = sys.error("stub")
def >(x: Double): Boolean = sys.error("stub")
def >=(x: Byte): Boolean = sys.error("stub")
def >=(x: Short): Boolean = sys.error("stub")
def >=(x: Char): Boolean = sys.error("stub")
def >=(x: Int): Boolean = sys.error("stub")
def >=(x: Long): Boolean = sys.error("stub")
def >=(x: Float): Boolean = sys.error("stub")
def >=(x: Double): Boolean = sys.error("stub")
def |(x: Byte): Int = sys.error("stub")
def |(x: Short): Int = sys.error("stub")
def |(x: Char): Int = sys.error("stub")
def |(x: Int): Int = sys.error("stub")
def |(x: Long): Long = sys.error("stub")
def &(x: Byte): Int = sys.error("stub")
def &(x: Short): Int = sys.error("stub")
def &(x: Char): Int = sys.error("stub")
def &(x: Int): Int = sys.error("stub")
def &(x: Long): Long = sys.error("stub")
def ^(x: Byte): Int = sys.error("stub")
def ^(x: Short): Int = sys.error("stub")
def ^(x: Char): Int = sys.error("stub")
def ^(x: Int): Int = sys.error("stub")
def ^(x: Long): Long = sys.error("stub")
def +(x: Byte): Int = sys.error("stub")
def +(x: Short): Int = sys.error("stub")
def +(x: Char): Int = sys.error("stub")
def +(x: Int): Int = sys.error("stub")
def +(x: Long): Long = sys.error("stub")
def +(x: Float): Float = sys.error("stub")
def +(x: Double): Double = sys.error("stub")
def -(x: Byte): Int = sys.error("stub")
def -(x: Short): Int = sys.error("stub")
def -(x: Char): Int = sys.error("stub")
def -(x: Int): Int = sys.error("stub")
def -(x: Long): Long = sys.error("stub")
def -(x: Float): Float = sys.error("stub")
def -(x: Double): Double = sys.error("stub")
def *(x: Byte): Int = sys.error("stub")
def *(x: Short): Int = sys.error("stub")
def *(x: Char): Int = sys.error("stub")
def *(x: Int): Int = sys.error("stub")
def *(x: Long): Long = sys.error("stub")
def *(x: Float): Float = sys.error("stub")
def *(x: Double): Double = sys.error("stub")
def /(x: Byte): Int = sys.error("stub")
def /(x: Short): Int = sys.error("stub")
def /(x: Char): Int = sys.error("stub")
def /(x: Int): Int = sys.error("stub")
def /(x: Long): Long = sys.error("stub")
def /(x: Float): Float = sys.error("stub")
def /(x: Double): Double = sys.error("stub")
def %(x: Byte): Int = sys.error("stub")
def %(x: Short): Int = sys.error("stub")
def %(x: Char): Int = sys.error("stub")
def %(x: Int): Int = sys.error("stub")
def %(x: Long): Long = sys.error("stub")
def %(x: Float): Float = sys.error("stub")
def %(x: Double): Double = sys.error("stub")
def getClass(): Class[Int] = sys.error("stub")
}
object Int extends AnyValCompanion {
final val MinValue = java.lang.Integer.MIN_VALUE
final val MaxValue = java.lang.Integer.MAX_VALUE
def box(x: Int): java.lang.Integer = java.lang.Integer.valueOf(x)
def unbox(x: java.lang.Object): Int = x.asInstanceOf[java.lang.Integer].intValue()
override def toString = "object scala.Int"
}