summaryrefslogblamecommitdiff
path: root/test/files/pos/t2081.scala
blob: f4f21600c629dfe3366ebcc434e3629c98a439a6 (plain) (tree)
1
2
3
4
5
6
7
8
9








                                                        
                       
 
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  
}