Skip to content

Commit 225e36c

Browse files
committed
Auto merge of #118542 - chenyukang:yukang-fix-parser-ice-118531, r=cjgillot
Fix parser ICE from attrs Fixes #118531, Fixes #118530.
2 parents 1ca8b71 + 5ff428c commit 225e36c

File tree

5 files changed

+110
-12
lines changed

5 files changed

+110
-12
lines changed

compiler/rustc_parse/src/parser/diagnostics.rs

+4-12
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ use crate::errors::{
1818
UnexpectedConstParamDeclaration, UnexpectedConstParamDeclarationSugg, UnmatchedAngleBrackets,
1919
UseEqInstead, WrapType,
2020
};
21-
2221
use crate::fluent_generated as fluent;
2322
use crate::parser;
2423
use crate::parser::attr::InnerAttrPolicy;
@@ -772,8 +771,10 @@ impl<'a> Parser<'a> {
772771
&& let ast::AttrKind::Normal(attr_kind) = &attr.kind
773772
&& let [segment] = &attr_kind.item.path.segments[..]
774773
&& segment.ident.name == sym::cfg
774+
&& let Some(args_span) = attr_kind.item.args.span()
775775
&& let Ok(next_attr) = snapshot.parse_attribute(InnerAttrPolicy::Forbidden(None))
776776
&& let ast::AttrKind::Normal(next_attr_kind) = next_attr.kind
777+
&& let Some(next_attr_args_span) = next_attr_kind.item.args.span()
777778
&& let [next_segment] = &next_attr_kind.item.path.segments[..]
778779
&& segment.ident.name == sym::cfg
779780
&& let Ok(next_expr) = snapshot.parse_expr()
@@ -787,23 +788,14 @@ impl<'a> Parser<'a> {
787788
let margin = self.sess.source_map().span_to_margin(next_expr.span).unwrap_or(0);
788789
let sugg = vec![
789790
(attr.span.with_hi(segment.span().hi()), "if cfg!".to_string()),
790-
(
791-
attr_kind.item.args.span().unwrap().shrink_to_hi().with_hi(attr.span.hi()),
792-
" {".to_string(),
793-
),
791+
(args_span.shrink_to_hi().with_hi(attr.span.hi()), " {".to_string()),
794792
(expr.span.shrink_to_lo(), " ".to_string()),
795793
(
796794
next_attr.span.with_hi(next_segment.span().hi()),
797795
"} else if cfg!".to_string(),
798796
),
799797
(
800-
next_attr_kind
801-
.item
802-
.args
803-
.span()
804-
.unwrap()
805-
.shrink_to_hi()
806-
.with_hi(next_attr.span.hi()),
798+
next_attr_args_span.shrink_to_hi().with_hi(next_attr.span.hi()),
807799
" {".to_string(),
808800
),
809801
(next_expr.span.shrink_to_lo(), " ".to_string()),
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
fn bar() -> String {
2+
#[cfg]
3+
[1, 2, 3].iter() //~ ERROR expected `;`, found `#`
4+
#[feature]
5+
attr::fn bar() -> String { //~ ERROR expected identifier, found keyword `fn`
6+
//~^ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `->`
7+
//~| ERROR expected `;`, found `bar`
8+
#[attr]
9+
[1, 2, 3].iter().map().collect::<String>()
10+
#[attr]
11+
12+
}()
13+
}
14+
15+
fn main() { }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
error: expected `;`, found `#`
2+
--> $DIR/issue-118530-ice.rs:3:21
3+
|
4+
LL | #[cfg]
5+
| ------ only `;` terminated statements or tail expressions are allowed after this attribute
6+
LL | [1, 2, 3].iter()
7+
| ^ expected `;` here
8+
LL | #[feature]
9+
| - unexpected token
10+
|
11+
help: add `;` here
12+
|
13+
LL | [1, 2, 3].iter();
14+
| +
15+
help: alternatively, consider surrounding the expression with a block
16+
|
17+
LL | { [1, 2, 3].iter() }
18+
| + +
19+
20+
error: expected identifier, found keyword `fn`
21+
--> $DIR/issue-118530-ice.rs:5:11
22+
|
23+
LL | attr::fn bar() -> String {
24+
| ^^ expected identifier, found keyword
25+
26+
error: expected `;`, found `bar`
27+
--> $DIR/issue-118530-ice.rs:5:13
28+
|
29+
LL | #[feature]
30+
| ---------- only `;` terminated statements or tail expressions are allowed after this attribute
31+
LL | attr::fn bar() -> String {
32+
| ^--- unexpected token
33+
| |
34+
| help: add `;` here
35+
36+
error: expected one of `.`, `;`, `?`, `}`, or an operator, found `->`
37+
--> $DIR/issue-118530-ice.rs:5:20
38+
|
39+
LL | attr::fn bar() -> String {
40+
| ^^ expected one of `.`, `;`, `?`, `}`, or an operator
41+
42+
error: aborting due to 4 previous errors
43+
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
fn bar() -> String {
2+
#[cfg(feature = )]
3+
[1, 2, 3].iter().map().collect::<String>() //~ ERROR expected `;`, found `#`
4+
5+
#[attr] //~ ERROR attributes on expressions are experimental [E0658]
6+
//~^ ERROR cannot find attribute `attr` in this scope
7+
String::new()
8+
}
9+
10+
fn main() { }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
error: expected `;`, found `#`
2+
--> $DIR/issue-118531-ice.rs:3:47
3+
|
4+
LL | #[cfg(feature = )]
5+
| ------------------ only `;` terminated statements or tail expressions are allowed after this attribute
6+
LL | [1, 2, 3].iter().map().collect::<String>()
7+
| ^ expected `;` here
8+
LL |
9+
LL | #[attr]
10+
| - unexpected token
11+
|
12+
help: add `;` here
13+
|
14+
LL | [1, 2, 3].iter().map().collect::<String>();
15+
| +
16+
help: alternatively, consider surrounding the expression with a block
17+
|
18+
LL | { [1, 2, 3].iter().map().collect::<String>() }
19+
| + +
20+
21+
error[E0658]: attributes on expressions are experimental
22+
--> $DIR/issue-118531-ice.rs:5:5
23+
|
24+
LL | #[attr]
25+
| ^^^^^^^
26+
|
27+
= note: see issue #15701 <https://github.com/rust-lang/rust/issues/15701> for more information
28+
= help: add `#![feature(stmt_expr_attributes)]` to the crate attributes to enable
29+
30+
error: cannot find attribute `attr` in this scope
31+
--> $DIR/issue-118531-ice.rs:5:7
32+
|
33+
LL | #[attr]
34+
| ^^^^
35+
36+
error: aborting due to 3 previous errors
37+
38+
For more information about this error, try `rustc --explain E0658`.

0 commit comments

Comments
 (0)