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