Skip to content

Commit 37f5c1e

Browse files
committed
Auto merge of rust-lang#3925 - phansch:3741, r=flip1995
Fix ICE in suspicious_else_formatting Fixes rust-lang#3741
2 parents 949f584 + 3ab8038 commit 37f5c1e

File tree

3 files changed

+51
-1
lines changed

3 files changed

+51
-1
lines changed

clippy_lints/src/formatting.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
use crate::utils::{differing_macro_contexts, in_macro, snippet_opt, span_note_and_lint};
2-
use rustc::lint::{EarlyContext, EarlyLintPass, LintArray, LintPass};
2+
use rustc::lint::{in_external_macro, EarlyContext, EarlyLintPass, LintArray, LintPass};
33
use rustc::{declare_tool_lint, lint_array};
44
use syntax::ast;
55
use syntax::ptr::P;
@@ -150,6 +150,7 @@ fn check_else(cx: &EarlyContext<'_>, expr: &ast::Expr) {
150150
if (is_block(else_) || unsugar_if(else_).is_some())
151151
&& !differing_macro_contexts(then.span, else_.span)
152152
&& !in_macro(then.span)
153+
&& !in_external_macro(cx.sess, expr.span)
153154
{
154155
// workaround for rust-lang/rust#43081
155156
if expr.span.lo().0 == 0 && expr.span.hi().0 == 0 {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
// no-prefer-dynamic
2+
// ^ compiletest by default builds all aux files as dylibs, but we don't want that for proc-macro
3+
// crates. If we don't set this, compiletest will override the `crate_type` attribute below and
4+
// compile this as dylib. Removing this then causes the test to fail because a `dylib` crate can't
5+
// contain a proc-macro.
6+
7+
#![feature(repr128)]
8+
#![crate_type = "proc-macro"]
9+
10+
extern crate proc_macro;
11+
12+
use proc_macro::{Delimiter, Group, Ident, Span, TokenStream, TokenTree};
13+
use std::iter::FromIterator;
14+
15+
#[proc_macro]
16+
pub fn macro_test(input_stream: TokenStream) -> TokenStream {
17+
let first_token = input_stream.into_iter().next().unwrap();
18+
let span = first_token.span();
19+
20+
TokenStream::from_iter(vec![
21+
TokenTree::Ident(Ident::new("fn", Span::call_site())),
22+
TokenTree::Ident(Ident::new("code", Span::call_site())),
23+
TokenTree::Group(Group::new(Delimiter::Parenthesis, TokenStream::new())),
24+
TokenTree::Group(Group::new(Delimiter::Brace, {
25+
let mut clause = Group::new(Delimiter::Brace, TokenStream::new());
26+
clause.set_span(span);
27+
28+
TokenStream::from_iter(vec![
29+
TokenTree::Ident(Ident::new("if", Span::call_site())),
30+
TokenTree::Ident(Ident::new("true", Span::call_site())),
31+
TokenTree::Group(clause.clone()),
32+
TokenTree::Ident(Ident::new("else", Span::call_site())),
33+
TokenTree::Group(clause.clone()),
34+
])
35+
})),
36+
])
37+
}

tests/ui/crashes/ice-3741.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// aux-build:proc_macro_crash.rs
2+
// run-pass
3+
4+
#![feature(proc_macro_hygiene)]
5+
#![warn(clippy::suspicious_else_formatting)]
6+
7+
extern crate proc_macro_crash;
8+
use proc_macro_crash::macro_test;
9+
10+
fn main() {
11+
macro_test!(2);
12+
}

0 commit comments

Comments
 (0)