When invoking some attribute procedural macro with inner form, i.e. #![foo_attr] at the crate root, a resolution error occurs:
#![feature(proc_macro)]
#![foo_attr]
//^ ERROR: cannot find attribute macro `foo_attr` in this scope
extern crate foo_macros;
use foo_attr_macro::foo_attr;
This should, ideally, resolve and execute properly.
When invoking some attribute procedural macro with inner form, i.e.
#![foo_attr]at the crate root, a resolution error occurs:This should, ideally, resolve and execute properly.