snazzy-d/sdc

Formatting of functions using `=>` instead of return

Opened this issue · 0 comments

Can we have sdfmt format

struct S {
	int ________________________________________________________(int x) => x + 1;
}

as

struct S {
	int ________________________________________________________(int x)
	    => x + 1;
}

instead of current

struct S {
	int ________________________________________________________(int x) =>
	x + 1;
}

.