diff --git a/mml_test.go b/mml_test.go index db47e05..fb519a5 100644 --- a/mml_test.go +++ b/mml_test.go @@ -1976,6 +1976,19 @@ func TestMML(t *testing.T) { }}, }}, ignorePosition: true, + }, { + msg: "block", + ignorePosition: true, + text: "{ f() }", + nodes: []*Node{{ + Name: "block", + Nodes: []*Node{{ + Name: "function-application", + Nodes: []*Node{{ + Name: "symbol", + }}, + }}, + }}, }, { msg: "go", text: "go f()",