mirror of
https://github.com/dlang/dmd.git
synced 2025-04-28 06:00:13 +03:00
10 lines
289 B
C
10 lines
289 B
C
// REQUIRED_ARGS: -os=windows -g
|
|
// DISABLED: osx
|
|
// This is disabled on macOS because ld complains about _main being undefined
|
|
// when clang attempts to preprocess the C file.
|
|
|
|
typedef enum
|
|
{
|
|
HasIntAndUIntValuesInt = 0,
|
|
HasIntAndUIntValuesUInt = 0x80000000
|
|
} HasIntAndUIntValues;
|