summaryrefslogtreecommitdiff
path: root/test/files/pos/bug2081.scala
blob: 52388464a55641332216e8d99827df190851f9b6 (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.e0 + 5e7
}