This is a counter proposal to #609.
def show(n: Int): String = <>
should mean
"please infer the effect"
instead of being syntax sugar for
def show(n: Int): String / {} = <>
This is more consistent to omitting types and we can still show the inferred effects in VSCode.
There might be backwards compatibility problems with overload resolution, but we'll see this when implemented.