remove extra trailing semicolon

This commit is contained in:
Niko Matsakis 2011-12-12 09:39:33 -08:00
parent ba6da950f1
commit 6b744b284e
1 changed files with 1 additions and 1 deletions

View File

@ -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) }