mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
13 lines
215 B
D
13 lines
215 B
D
void main(string[] args)
|
|
{
|
|
struct SomeStruct {
|
|
private:
|
|
int a; int b;
|
|
void doStuff(int q)
|
|
in {
|
|
assert(q);
|
|
} out (result) {}
|
|
body
|
|
{
|
|
writeln(q);
|
|
}}}
|