module Test1 { doo () : void { _ = Hoo (bla, bla; // E: when parsing this `\(' brace group Trata (tututu); } // E: unexpected closing bracket `}' } module M { public boo () : void { match (2) { | _ => () _ = 34; // E: expected `;' } } public baa () : void { match () { // E: .*expecting non-empty `\(\.\.\)' after `match' | _ => () } } typof () : void { typeof (); // E: expecting single type in.*typeof.* } faa () : void { match (3) { | 1 => // E: match case body cannot be empty | _ => {} } } } module Unclosed { // E: when parsing this foo () : void { } // E: unexpected end of file