summaryrefslogtreecommitdiff
path: root/Test.scala
blob: 1d8d7afd763458e66c4b2bda3301585e79243e26 (plain) (blame)
1
2
3
4
5
6
7
object Test extends Application {
  if (1 == 0) throw new Error();
  bar;
  def bar = foo;
  def foo = if (true)
    throw new Error();
}