about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-09-30 01:15:50 -0700
committerGitHub <noreply@github.com>2016-09-30 01:15:50 -0700
commitc88ed2a1a7c5e11932f2f2b315e527933d3f7ebf (patch)
tree1c6c055443c8984257b683c569958035ce368702
parent7660bdf70ae0c6a434dd12cfdeb8250ce77c69c7 (diff)
parent4bec961a218efb44ee6eba77c5fc76207f168195 (diff)
downloadrust-c88ed2a1a7c5e11932f2f2b315e527933d3f7ebf.tar.gz
rust-c88ed2a1a7c5e11932f2f2b315e527933d3f7ebf.zip
Auto merge of #36819 - jseyfried:fix_ast_const_integer_ice, r=nrc
Fix ICE on some macros in const integer positions (e.g. `[u8; m!()]`)

Fixes #36816.
r? @nrc
-rw-r--r--src/librustc_resolve/macros.rs9
-rw-r--r--src/test/run-pass/issue-36816.rs16
2 files changed, 22 insertions, 3 deletions
diff --git a/src/librustc_resolve/macros.rs b/src/librustc_resolve/macros.rs
index 17f2dff28c3..947aeb4439e 100644
--- a/src/librustc_resolve/macros.rs
+++ b/src/librustc_resolve/macros.rs
@@ -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);
         });
     }
 }
diff --git a/src/test/run-pass/issue-36816.rs b/src/test/run-pass/issue-36816.rs
new file mode 100644
index 00000000000..22f3a52b26e
--- /dev/null
+++ b/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];
+}