summaryrefslogblamecommitdiff
path: root/test/files/run/implicitclasses.scala
blob: 5c3ad588e6551a150e1af7b4f2fe89ed3ef11091 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                               
object Test extends App {

  implicit class C(s: String) {
    def nElems = s.length
  }

  "abc".nElems

}