mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 03:13:13 +01:00
13 lines
105 B
D
13 lines
105 B
D
struct Foo;
|
|
|
|
Foo* foo()
|
|
{
|
|
return null;
|
|
}
|
|
|
|
void main()
|
|
{
|
|
Foo* f = foo();
|
|
assert(f is null);
|
|
}
|