https://issues.dlang.org/show_bug.cgi?id=23363
--- Comment #1 from TheGag96 <[email protected]> --- Sorry - doing a bit of compiler debugging, those values seem to come from /usr/include/x86_64-linux-gnu/bits/waitflags.h: typedef enum { P_ALL, /* Wait for any child. */ P_PID, /* Wait for specified process. */ P_PGID /* Wait for members of process group. */ } idtype_t; And it appears all enums affected by this issue are ones declared afterward as the form: typedef enum { //members } some_enum_name; I think more accurately, all enums declared this way are piggybacking off of the enums of the first one. --
