Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Forbidding non uppercase statics causes build to fail #13

Closed
mattyhall opened this issue Oct 4, 2014 · 3 comments
Closed

Forbidding non uppercase statics causes build to fail #13

mattyhall opened this issue Oct 4, 2014 · 3 comments

Comments

@mattyhall
Copy link
Contributor

With rustc version 0.12.0-nightly (136ab3c6b 2014-10-04 00:17:04 +0000) rust-xml will no longer build. It gives this error:

<std macros>:12:21: 12:42 error: allow(non_uppercase_statics) overruled by outer forbid(non_uppercase_statics)
<std macros>:12             #[allow(non_uppercase_statics)]
                                    ^~~~~~~~~~~~~~~~~~~~~
<std macros>:1:1: 138:2 note: in expansion of bitflags!
src/writer/emitter.rs:111:1: 117:2 note: expansion site
<std macros>:12:21: 12:42 error: allow(non_uppercase_statics) overruled by outer forbid(non_uppercase_statics)
<std macros>:12             #[allow(non_uppercase_statics)]
                                    ^~~~~~~~~~~~~~~~~~~~~
<std macros>:1:1: 138:2 note: in expansion of bitflags!
src/writer/emitter.rs:111:1: 117:2 note: expansion site
<std macros>:12:21: 12:42 error: allow(non_uppercase_statics) overruled by outer forbid(non_uppercase_statics)
<std macros>:12             #[allow(non_uppercase_statics)]

It appears that the ![forbid(non_uppercase_statics)] in src/lib.rs conflicts with a #[allow(non_uppercase_statics)] in the bitflags! macro. Removing the forbid from src/lib.rs fixes it but I don't know if that's something you actually want to do.

@netvl
Copy link
Owner

netvl commented Oct 4, 2014

This is really strange. It looks like an issue in Rust compiler or std library. As far as I understand, this means that #[forbid(non_uppercase_statics)] is useless if bitflags! macro (or another similar one) is used somewhere in the code.

I guess it's ok to remove the forbid as a temporary measure. Feel free to submit your commit as a PR :)

@mattyhall
Copy link
Contributor Author

Weird! I'll submit the PR. Just a quick fix whilst the bug is fixed in rust hopefully!

@netvl netvl closed this as completed in 5a3522c Oct 5, 2014
netvl added a commit that referenced this issue Oct 5, 2014
Remove forbid non_uppercase_statics. Fixes #13
@jakerr
Copy link

jakerr commented Oct 7, 2014

FYI: This was fixed in rustc if you'd like to put the forbid back in.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants