summaryrefslogtreecommitdiff
path: root/test/files/run/t4146.scala
blob: 93ce22b51971c0bb8016b7b127657365a4d4c394 (plain) (blame)
1
2
3
4
5
6
7
object bob extends Application {
  var name = "Bob"
}

object Test extends App {
  assert(bob.name == "Bob")
}