mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
15 lines
167 B
C
15 lines
167 B
C
// https://github.com/dlang/dmd/issues/20831
|
|
#include "assert.h"
|
|
|
|
int* p;
|
|
|
|
#define IMPL() \
|
|
f()\
|
|
{\
|
|
assert(p);\
|
|
assert(0);\
|
|
}
|
|
|
|
void IMPL()
|
|
|
|
void main(void) {}
|