view test/bug6.d @ 202:56e0c5b1d428 trunk

[svn r218] Added test results for [217]
author lindquist
date Mon, 12 May 2008 23:49:07 +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);
}