aboutsummaryrefslogtreecommitdiff
path: root/tests/pos/t2081.scala
blob: 395134f71cefc3263f74a0e81789f0a7b428e5d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
object ScalaForRubyists {
  class RichInt(n: Int) {
    def days = 1000*60*60*24*n
  }

  implicit def RichInt(n: Int): RichInt = new RichInt(n)

  val x = 10.days
  // a couple parser corner cases I wanted not to break
  val y = 5.0e0 + 5e7
}