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

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