mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
11 lines
224 B
Rust
11 lines
224 B
Rust
//@ proc-macro: test-macros.rs
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![warn(unused_extern_crates)]
|
|
|
|
extern crate test_macros;
|
|
//~^ WARN unused extern crate
|
|
|
|
#[rustc_error]
|
|
fn main() {} //~ ERROR fatal error triggered by #[rustc_error]
|