view tests/mini/nested4.d @ 395:71a40b62b408

Start a new basic block after a continue statement. Fixes bug_d_irstate_244_A/b.
author Christian Kamm <kamm incasoftware de>
date Sat, 26 Jul 2008 15:00:57 +0200
parents 1bb99290e03a
children
line wrap: on
line source

module nested4;

void func(void delegate() dg) {
  auto v = (){
    dg();
  };
}

void main()
{
    func({});
}