dfmt/tests/otbs/issue0139.d.ref

25 lines
206 B
Plaintext

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 {
}