2018-03-16 06:20:56 +00:00
|
|
|
//! Attributes producing expressions in invalid locations
|
|
|
|
|
2020-01-31 22:02:31 +00:00
|
|
|
//@ aux-build:attr-stmt-expr.rs
|
|
|
|
|
|
|
|
#![feature(proc_macro_hygiene)]
|
|
|
|
#![feature(stmt_expr_attributes)]
|
2018-03-16 06:20:56 +00:00
|
|
|
|
|
|
|
extern crate attr_stmt_expr;
|
|
|
|
use attr_stmt_expr::{duplicate, no_output};
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let _ = #[no_output] "Hello, world!";
|
2019-05-22 00:47:23 +00:00
|
|
|
//~^ ERROR expected expression, found end of macro arguments
|
2018-03-16 06:20:56 +00:00
|
|
|
|
|
|
|
let _ = #[duplicate] "Hello, world!";
|
|
|
|
//~^ ERROR macro expansion ignores token `,` and any following
|
|
|
|
|
|
|
|
let _ = {
|
|
|
|
#[no_output]
|
|
|
|
"Hello, world!"
|
|
|
|
};
|
|
|
|
|
|
|
|
let _ = {
|
|
|
|
#[duplicate]
|
|
|
|
//~^ ERROR macro expansion ignores token `,` and any following
|
|
|
|
"Hello, world!"
|
|
|
|
};
|
|
|
|
}
|