mirror of
https://github.com/dlang-community/DCD.git
synced 2025-04-26 13:19:56 +03:00
24 lines
114 B
D
24 lines
114 B
D
struct B
|
|
{
|
|
int a;
|
|
void b();
|
|
int c;
|
|
}
|
|
|
|
struct A
|
|
{
|
|
this()
|
|
{
|
|
|
|
}
|
|
}
|
|
|
|
unittest
|
|
{
|
|
A.
|
|
}
|
|
|
|
unittest
|
|
{
|
|
auto b = B(
|
|
}
|