Sign in
◑
Theme
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
librustc_error_codes
/
error_codes
/
E0648.md
blob: 319bae103f3b39b7450929351e73d26eb2d57486 [
file
] [
view
]
`export_name`
attributes may
not
contain
null
characters
(
`\0`
).
```compile_fail,E0648
#[export_name="\0foo"] // error: `
export_name
` may not contain null characters
pub fn bar() {}
```