mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00

Fixes https://github.com/dlang/dmd/issues/20502 Similar to VarDeclarations, don't let TemplateDeclarations from C defines shadow a real symbol.
10 lines
118 B
C
10 lines
118 B
C
// https://github.com/dlang/dmd/issues/20502
|
|
struct mg_str {
|
|
|
|
};
|
|
|
|
void mg_str_s() {
|
|
|
|
}
|
|
|
|
#define mg_str(s) mg_str_s(s)
|