mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 05:30:13 +03:00
32 lines
301 B
D
32 lines
301 B
D
/*
|
|
EXTRA_ARGS: -g -defaultlib= -betterC -c
|
|
*/
|
|
|
|
extern(C) void main()
|
|
{
|
|
char c;
|
|
wchar wc;
|
|
dchar dc;
|
|
|
|
float f;
|
|
double d;
|
|
real r;
|
|
|
|
bool b;
|
|
|
|
byte sb;
|
|
ubyte ub;
|
|
short s;
|
|
ushort us;
|
|
int i;
|
|
uint ui;
|
|
long l;
|
|
ulong ul;
|
|
|
|
ifloat if_;
|
|
idouble id;
|
|
ireal ir;
|
|
cfloat cf;
|
|
cdouble cd;
|
|
creal cr;
|
|
}
|