mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
19 lines
205 B
D
19 lines
205 B
D
|
|
/* REQUIRED_ARGS: -betterC
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=18099
|
|
|
|
struct D
|
|
{
|
|
static struct V
|
|
{
|
|
~this() { }
|
|
}
|
|
|
|
V get()
|
|
{
|
|
V v;
|
|
return v;
|
|
}
|
|
}
|