view tests/mini/nested14.d @ 452:30ef3c7bddca

Fixed problems with nested 'this'. Fixes #39 . Fixed problem with debug info order of intrinsic calls (func.start after declare).
author Tomas Lindquist Olsen <tomas.l.olsen@gmail.com>
date Sat, 02 Aug 2008 00:50:39 +0200
parents
children
line wrap: on
line source

module mini.nested14;

extern(C) int printf(char*, ...);

class C
{
  void foo()
  {
    void bar()
    {
       car();
    }

    bar();
  }

  void car()
  {
    printf("great\n");
  }
}

void main()
{
  scope c = new C;
  c.foo();
}