Fix #6342
This commit is contained in:
parent
15e44381af
commit
6c33f5044b
2 changed files with 26 additions and 4 deletions
|
@ -4186,10 +4186,10 @@ pub impl Parser {
|
||||||
return iovi_foreign_item(item);
|
return iovi_foreign_item(item);
|
||||||
}
|
}
|
||||||
if (self.is_keyword("fn") || self.is_keyword("pure") ||
|
if (self.is_keyword("fn") || self.is_keyword("pure") ||
|
||||||
self.is_keyword("unsafe")) {
|
self.is_keyword("unsafe")) {
|
||||||
// FOREIGN FUNCTION ITEM
|
// FOREIGN FUNCTION ITEM
|
||||||
let item = self.parse_item_foreign_fn(attrs);
|
let item = self.parse_item_foreign_fn(attrs);
|
||||||
return iovi_foreign_item(item);
|
return iovi_foreign_item(item);
|
||||||
}
|
}
|
||||||
self.parse_macro_use_or_failure(attrs,macros_allowed,lo,visibility)
|
self.parse_macro_use_or_failure(attrs,macros_allowed,lo,visibility)
|
||||||
}
|
}
|
||||||
|
@ -4504,7 +4504,12 @@ pub impl Parser {
|
||||||
let mut foreign_items = ~[];
|
let mut foreign_items = ~[];
|
||||||
loop {
|
loop {
|
||||||
match self.parse_foreign_item(/*bad*/ copy attrs, macros_allowed) {
|
match self.parse_foreign_item(/*bad*/ copy attrs, macros_allowed) {
|
||||||
iovi_none => break,
|
iovi_none => {
|
||||||
|
if *self.token == token::RBRACE {
|
||||||
|
break
|
||||||
|
}
|
||||||
|
self.unexpected();
|
||||||
|
},
|
||||||
iovi_view_item(view_item) => {
|
iovi_view_item(view_item) => {
|
||||||
// I think this can't occur:
|
// I think this can't occur:
|
||||||
self.span_err(view_item.span,
|
self.span_err(view_item.span,
|
||||||
|
|
17
src/test/compile-fail/extern-no-fn.rs
Normal file
17
src/test/compile-fail/extern-no-fn.rs
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
||||||
|
// file at the top-level directory of this distribution and at
|
||||||
|
// http://rust-lang.org/COPYRIGHT.
|
||||||
|
//
|
||||||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||||||
|
// option. This file may not be copied, modified, or distributed
|
||||||
|
// except according to those terms.
|
||||||
|
|
||||||
|
// error-pattern:unexpected token
|
||||||
|
extern {
|
||||||
|
f();
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue