dmd/compiler/test/fail_compilation/test23003.c
drpriver 74cdfed9d6
ImportC: improve error message for size_t (#21187)
Resolves: https://github.com/dlang/dmd/issues/20414

Add some hints for common missing includes.
2025-04-10 07:16:54 +08:00

14 lines
285 B
C

/* TEST_OUTPUT:
---
fail_compilation/test23003.c(101): Error: `size_t` is not defined, perhaps `#include <stddef.h>` ?
fail_compilation/test23003.c(102): Error: undefined identifier `object`
---
*/
/* https://issues.dlang.org/show_bug.cgi?id=23003
*/
#line 100
size_t x;
object y;