view test/bug6.d @ 50:6fcc08a4d406 trunk

[svn r54] Added support for nested delegates referencing parent's stack variables. Replaced tester.sh with a version written in D. A few bugfixes.
author lindquist
date Mon, 22 Oct 2007 15:40:56 +0200
parents a86fe7496b58
children
line wrap: on
line source

module bug6;
class wrong { }
void bark(ref wrong s) { s = new wrong; }
void foo(wrong tree) {
    auto old = tree;
    bark(tree);
    assert(old !is tree);
}
void main()
{
    auto w = new wrong;
    auto old = w;
    foo(w);
    assert(w is old);
}