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

Resolves: https://github.com/dlang/dmd/issues/20414 Add some hints for common missing includes.
14 lines
285 B
C
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;
|