mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
23 lines
333 B
D
23 lines
333 B
D
// REQUIRED_ARGS: -w -c -unittest
|
|
|
|
version (unittest)
|
|
private struct _NestedSym_
|
|
{
|
|
static if ((void*).sizeof == 8)
|
|
{
|
|
int pointersize = 64;
|
|
}
|
|
else
|
|
{
|
|
int pointersize = 32;
|
|
}
|
|
|
|
version (X86_64)
|
|
{
|
|
string arch = "X86_64";
|
|
}
|
|
else
|
|
{
|
|
string arch = "Not 64";
|
|
}
|
|
}
|