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