Skip to content

Commit

Permalink
Auto merge of #36819 - jseyfried:fix_ast_const_integer_ice, r=nrc
Browse files Browse the repository at this point in the history
Fix ICE on some macros in const integer positions (e.g. `[u8; m!()]`)

Fixes #36816.
r? @nrc
  • Loading branch information
bors committed Sep 30, 2016
2 parents 7660bdf + 4bec961 commit c88ed2a
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/librustc_resolve/macros.rs
Expand Up @@ -172,10 +172,13 @@ impl<'a> Resolver<'a> {

let mut def_collector = DefCollector::new(&mut self.definitions);
def_collector.visit_macro_invoc = Some(visit_macro_invoc);
def_collector.with_parent(def_index, |def_collector| if !const_integer {
def_collector.with_parent(def_index, |def_collector| {
if const_integer {
if let Expansion::Expr(ref expr) = *expansion {
def_collector.visit_ast_const_integer(expr);
}
}
expansion.visit_with(def_collector)
} else if let Expansion::Expr(ref expr) = *expansion {
def_collector.visit_ast_const_integer(expr);
});
}
}
16 changes: 16 additions & 0 deletions src/test/run-pass/issue-36816.rs
@@ -0,0 +1,16 @@
// Copyright 2016 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.

macro_rules! m { () => { 1 } }
macro_rules! n { () => { 1 + m!() } }

fn main() {
let _: [u32; n!()] = [0, 0];
}

0 comments on commit c88ed2a

Please sign in to comment.