dtolnay / typetag

Serde serializable and deserializable trait objects
Apache License 2.0
1.19k stars 38 forks source link

Ignore non_local_definitions false positive in macro-generated impls #75

Closed dtolnay closed 7 months ago

dtolnay commented 7 months ago

These impls are for Box<dyn Trait>, where dyn Trait is known to be local. Box is #[fundamental] yet the lint is still triggered.

Upstream issue: https://github.com/rust-lang/rust/issues/121621