mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
15 lines
359 B
Rust
15 lines
359 B
Rust
//@ error-pattern: attempted to define built-in macro more than once
|
|
|
|
#![feature(rustc_attrs)]
|
|
|
|
#[rustc_builtin_macro]
|
|
macro_rules! unknown { () => () } //~ ERROR cannot find a built-in macro with name `unknown`
|
|
|
|
#[rustc_builtin_macro]
|
|
macro_rules! line { () => () } //~ NOTE previously defined here
|
|
|
|
fn main() {
|
|
line!();
|
|
std::prelude::v1::line!();
|
|
}
|