2024-02-16 20:02:50 +00:00
|
|
|
//@ aux-build:two_macros.rs
|
2015-01-02 20:50:45 +00:00
|
|
|
|
|
|
|
extern crate two_macros;
|
|
|
|
|
|
|
|
pub fn main() {
|
2017-02-06 11:44:38 +00:00
|
|
|
macro_two!();
|
2019-09-15 10:12:14 +00:00
|
|
|
//~^ ERROR cannot find macro `macro_two` in this scope
|
2015-01-02 20:50:45 +00:00
|
|
|
}
|