diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-08-17 15:14:53 +0200 |
|---|---|---|
| committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2020-08-17 15:14:53 +0200 |
| commit | cbc13c5eb72ffd470a3e4a59c96c85e004268584 (patch) | |
| tree | 25d7f2d4ea7d566fdf40b761a7da2b5f141caafd /src/librustc_error_codes/error_codes | |
| parent | 441fd2255763c2aeea616aeac61b2c795a4c5330 (diff) | |
| download | rust-cbc13c5eb72ffd470a3e4a59c96c85e004268584.tar.gz rust-cbc13c5eb72ffd470a3e4a59c96c85e004268584.zip | |
Clean up E0754 explanation
Diffstat (limited to 'src/librustc_error_codes/error_codes')
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0754.md | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/src/librustc_error_codes/error_codes/E0754.md b/src/librustc_error_codes/error_codes/E0754.md index abdc01ed21a..576317e1291 100644 --- a/src/librustc_error_codes/error_codes/E0754.md +++ b/src/librustc_error_codes/error_codes/E0754.md @@ -1,31 +1,27 @@ An non-ascii identifier was used in an invalid context. -Erroneous code example: +Erroneous code examples: ```compile_fail,E0754 # #![feature(non_ascii_idents)] mod řųśť; // ^ error! -fn main() {} -``` - -```compile_fail,E0754 -# #![feature(non_ascii_idents)] #[no_mangle] fn řųśť() {} // ^ error! + fn main() {} ``` -Non-ascii can be used as module names if it is inline -or a #\[path\] attribute is specified. For example: +Non-ascii can be used as module names if it is inline or a `#[path]` attribute +is specified. For example: ``` # #![feature(non_ascii_idents)] -mod řųśť { +mod řųśť { // ok! const IS_GREAT: bool = true; } |
