427952e808
This change makes error and warning annotations mandatory in UI tests. The only exception are tests that use error patterns to match compiler output and don't have any annotations.
14 lines
218 B
Rust
14 lines
218 B
Rust
// run-pass
|
|
// aux-build:two_macros-rpass.rs
|
|
|
|
#![warn(unused_attributes)]
|
|
|
|
#[macro_use]
|
|
#[macro_use()] //~ WARNING unused attribute
|
|
extern crate two_macros_rpass;
|
|
|
|
pub fn main() {
|
|
macro_one!();
|
|
macro_two!();
|
|
}
|