Serde deserialization: Namespaces can lead to erroneous "duplicate field" errors #547
Labels
namespaces
Issues related to namespaces support
serde
Issues related to mapping from Rust types to XML
There appears to be a bug when trying to deserialize XML mixing named and unnamed namespaces (e.g.
xmlns=a
andxmlns:a=a
). Here's a quick repro, which I think shows the problem better than I can explain it:Output:
I would expect both
lol
andohai:lol
to get appended to thelol: Vec<Lol>
of theRoot
struct.The text was updated successfully, but these errors were encountered: