On 15.05.2017 03:18, Jonathan M Davis via Digitalmars-d wrote:
So, while I do like the idea of getting the word body back as an identifier, what really appeals to me here is getting rid of the need for it with contracts.
auto foo()in{
assert(true);
}out{
assert(true);
}{
return 3;
}
Are you really arguing for this?
I don't want to write code like this.
