]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-51848.rs
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-51848.rs
1 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // In case of macro expansion, the errors should be matched using the deepest callsite in the
12 // macro call stack whose span is in the current file
13
14 macro_rules! macro_with_error {
15     ( ) => {
16         println!("{"); //~ ERROR invalid
17     };
18 }
19
20 fn foo() {
21
22 }
23
24 fn main() {
25     macro_with_error!();
26     //^ In case of a local macro we want the error to be matched in the macro definition, not here
27
28     println!("}"); //~ ERROR invalid
29     //^ In case of an external macro we want the error to be matched here
30 }