summaryrefslogtreecommitdiff
path: root/test/pending/pos/t4683.scala
blob: 7af70241592a4d2f388b733d325ba98a05e50481 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
class DelayedInitTest {
  def a = ()
  class B extends DelayedInit {
    a
    def delayedInit(body: => Unit) = ()
  }
}