We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc13c5 commit 4fa69cbCopy full SHA for 4fa69cb
src/librustc_error_codes/error_codes/E0754.md
@@ -5,18 +5,16 @@ Erroneous code examples:
5
```compile_fail,E0754
6
# #![feature(non_ascii_idents)]
7
8
-mod řųśť;
9
-// ^ error!
+mod řųśť; // error!
10
11
#[no_mangle]
12
-fn řųśť() {}
13
+fn řųśť() {} // error!
14
15
fn main() {}
16
```
17
18
-Non-ascii can be used as module names if it is inline or a `#[path]` attribute
19
-is specified. For example:
+Non-ascii can be used as module names if it is inlined or if a `#[path]`
+attribute is specified. For example:
20
21
22
0 commit comments