dmd/compiler/test/compilable/test23029.c
2022-07-09 18:53:07 +02:00

11 lines
225 B
C

/* https://issues.dlang.org/show_bug.cgi?id=23029
*/
void print_const(const char*);
void print(char*);
int main(){
(void)_Generic("",
char*: print,
const char*: print_const
)("hello");
}