We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
#[no_mangle]
Items with an ASCII name and #[no_mangle] should not compile.
input:
#[no_mangle] pub fn ぽ() {} pub fn main() {}
output: compiled.
expected: rustc's output
error[[E0754]](https://doc.rust-lang.org/stable/error_codes/E0754.html): `#[no_mangle]` requires ASCII identifier --> src/main.rs:2:1 | 2 | pub fn ぽ() {} | ^^^^^^^^^^^
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Items with an ASCII name and
#[no_mangle]
should not compile.input:
output: compiled.
expected: rustc's output
The text was updated successfully, but these errors were encountered: