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() {}
```