rust/tests/ui/crashes/ice-3741.rs
Eduardo Broto 6b59675449 Remove run-pass annotations from crash tests
It does not seem to be necessary
2020-09-25 15:19:36 +02:00

10 lines
180 B
Rust

// aux-build:proc_macro_crash.rs
#![warn(clippy::suspicious_else_formatting)]
extern crate proc_macro_crash;
use proc_macro_crash::macro_test;
fn main() {
macro_test!(2);
}