mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00

Fixes https://github.com/dlang/dmd/issues/21225 Don't let C macro variable declarations shadow any symbol.
7 lines
122 B
C
7 lines
122 B
C
// https://github.com/dlang/dmd/issues/21225
|
|
void x(void){
|
|
}
|
|
#define x 3
|
|
|
|
typedef struct Foo {int y; } foo;
|
|
#define foo 3
|