2013-10-02 04:43:15 +00:00
|
|
|
// Copyright 2013 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.
|
|
|
|
|
2016-03-26 00:36:03 +00:00
|
|
|
// compile-flags: -Z continue-parse-after-error
|
|
|
|
|
2013-10-02 04:43:15 +00:00
|
|
|
macro_rules! ignored_item {
|
|
|
|
() => {
|
|
|
|
fn foo() {}
|
2013-11-25 07:08:53 +00:00
|
|
|
fn bar() {}
|
|
|
|
, //~ ERROR macro expansion ignores token `,`
|
2013-10-02 04:43:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! ignored_expr {
|
2016-07-02 15:49:50 +00:00
|
|
|
() => ( 1, //~ ERROR expected one of `.`, `;`, `?`, `}`, or an operator, found `,`
|
2017-03-25 22:36:59 +00:00
|
|
|
//~^ NOTE expected one of `.`, `;`, `?`, `}`, or an operator here
|
2017-03-25 02:14:58 +00:00
|
|
|
//~| NOTE unexpected token
|
2016-02-10 03:11:27 +00:00
|
|
|
2 )
|
2013-10-02 04:43:15 +00:00
|
|
|
}
|
|
|
|
|
2014-05-19 22:14:23 +00:00
|
|
|
macro_rules! ignored_pat {
|
|
|
|
() => ( 1, 2 ) //~ ERROR macro expansion ignores token `,`
|
|
|
|
}
|
|
|
|
|
2015-04-04 20:13:57 +00:00
|
|
|
ignored_item!(); //~ NOTE caused by the macro expansion here
|
2013-10-02 04:43:15 +00:00
|
|
|
|
|
|
|
fn main() {
|
2017-03-28 05:32:43 +00:00
|
|
|
ignored_expr!(); //~ NOTE in this expansion
|
2014-05-19 22:14:23 +00:00
|
|
|
match 1 {
|
2015-04-04 20:13:57 +00:00
|
|
|
ignored_pat!() => (), //~ NOTE caused by the macro expansion here
|
2014-05-19 22:14:23 +00:00
|
|
|
_ => (),
|
|
|
|
}
|
2013-10-02 04:43:15 +00:00
|
|
|
}
|