mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
18 lines
139 B
D
18 lines
139 B
D
// REQUIRED_ARGS:
|
|
// PERMUTE_ARGS:
|
|
|
|
union U
|
|
{
|
|
bool a;
|
|
long b;
|
|
}
|
|
|
|
U test1()
|
|
{
|
|
return U();
|
|
}
|
|
|
|
U* test2()
|
|
{
|
|
return new U();
|
|
}
|