summaryrefslogtreecommitdiff
path: root/test/files/jvm/nooptimise/Foo_1.scala
blob: c6f1b06c8e5267dcc429d811de6cfaa0c4c2ec0a (plain) (blame)
1
2
3
4
5
6
7
8
class Foo_1 {
  def foo() {
    // optimization will remove this magic 3 from appearing in the source
    // so -Ynooptimize should prevent that
    val x = 3
     
  }
}