aboutsummaryrefslogtreecommitdiff
path: root/tests/untried/pos/needstypeearly.scala
blob: 904b30cf844e6b162d414a256e825d5b453d2cac (plain) (blame)
1
2
3
4
5
6
7
8
9
abstract class NeedsXEarly {
  val x: Int
}
class Foo extends NeedsXEarly {
// TODO NEEDS MANUAL CHANGE (early initializers)
// BEGIN copied early initializers
val x = 1
// END copied early initializers
}