nph v0.6.1 removes the semicolon at the end of a statement list expression: ```nim type Foo = int (var f = Foo(42);) ``` this syntax is useful when checking that a statement compiles: `assert compiles((var f = Foo(42);))`
nph v0.6.1 removes the semicolon at the end of a statement list expression:
this syntax is useful when checking that a statement compiles:
assert compiles((var f = Foo(42);))