From 6b744b284ea5eca0f6158719038e5c91561a6dd0 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Mon, 12 Dec 2011 09:39:33 -0800 Subject: [PATCH] remove extra trailing semicolon --- src/comp/syntax/parse/parser.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comp/syntax/parse/parser.rs b/src/comp/syntax/parse/parser.rs index c8b94616ab9e..fb610698564e 100644 --- a/src/comp/syntax/parse/parser.rs +++ b/src/comp/syntax/parse/parser.rs @@ -1357,7 +1357,7 @@ fn parse_fn_expr(p: parser, kw: fn_kw) -> @ast::expr { (fn_kw_fn., true) { ast::proto_bare } (fn_kw_fn_at., true) { ast::proto_send } (fn_kw_lambda., true) { ast::proto_send } - (fn_kw_block., true) { p.fatal("block cannot be declared sendable"); } + (fn_kw_block., true) { p.fatal("block cannot be declared sendable") } (fn_kw_fn., false) { ast::proto_bare } (fn_kw_fn_at., false) { ast::proto_shared(ast::sugar_normal) } (fn_kw_lambda., false) { ast::proto_shared(ast::sugar_sexy) }