summaryrefslogtreecommitdiff
path: root/test/pos/moduletrans.scala
blob: 953ce4ee6c4d4efc9275e68fb0bf1c9f87decdfb (plain) (blame)
1
2
3
4
5
6
7
8
module m1 {

  class m() {
    def f() = 5
  }
  final val m: m = new m()

}