Closed Bromeon closed 2 years ago
The initial implementation from #28 cannot handle this:
impl MyTrait for MyStruct { #![inner] #[outer] pub type MyType = std::string::String; }
This pull request fixes that, by first parsing all attributes of the form #![inner] and then #[outer].
#![inner]
#[outer]
The tests now also include such cases.
The initial implementation from #28 cannot handle this:
This pull request fixes that, by first parsing all attributes of the form
#![inner]
and then#[outer]
.The tests now also include such cases.