On 16 July 2014 14:59, Ben Harris <[email protected]> wrote: > You can ask on the Rust IRC. My guess is that the error is triggering before > there is a chance to throw the unused-attribute warning out. In the past it > would have told you the error, but with the new plugin system we can define > our own attributes, so the lint can't tell that we have done something wrong > till the end.
Ben, your guess was right. I remove the `json::encode` call and got `warning: unused attribute` and fixing the attribute name gets rid of the warning. I suppose this is a downside of the plugin system... _______________________________________________ Rust-dev mailing list [email protected] https://mail.mozilla.org/listinfo/rust-dev
