mirror of
https://github.com/dlang-community/dfmt.git
synced 2025-04-25 21:00:03 +03:00
32 lines
197 B
D
32 lines
197 B
D
void foo(auto in a, auto out int b) const
|
|
out
|
|
{
|
|
assert(true);
|
|
}
|
|
body
|
|
{
|
|
}
|
|
|
|
void foo() const
|
|
in
|
|
{
|
|
}
|
|
out
|
|
{
|
|
assert(true);
|
|
}
|
|
body
|
|
{
|
|
}
|
|
|
|
void foo() const
|
|
in
|
|
{
|
|
}
|
|
out (result)
|
|
{
|
|
assert(true);
|
|
}
|
|
body
|
|
{
|
|
}
|