mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-04-17 17:29:02 +02:00
[svn r362] Started merging the old 'test' dir as well as the newer 'tangotests' dir into 'tests/mini' and 'tests/minicomplex'.
This commit is contained in:
14
tests/mini/bug7.d
Normal file
14
tests/mini/bug7.d
Normal file
@@ -0,0 +1,14 @@
|
||||
module bug7;
|
||||
|
||||
class love { }
|
||||
void bug() {
|
||||
love[] child;
|
||||
child.length=1;
|
||||
assert(child[0] is null);
|
||||
child[0]=null;
|
||||
assert(child[0] is null);
|
||||
}
|
||||
void main()
|
||||
{
|
||||
bug();
|
||||
}
|
||||
Reference in New Issue
Block a user