mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-13 19:33:13 +01:00
9 lines
96 B
D
9 lines
96 B
D
module mini.ptrcond;
|
|
|
|
void main()
|
|
{
|
|
char[4]* cp;
|
|
void* vp = &cp;
|
|
assert(cp < vp);
|
|
}
|