]> git.lizzy.rs Git - rust.git/blob - src/test/ui/lint/lint-nonstandard-style-unicode-2.stderr
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
[rust.git] / src / test / ui / lint / lint-nonstandard-style-unicode-2.stderr
1 error: function `Ц` should have a snake case name
2   --> $DIR/lint-nonstandard-style-unicode-2.rs:17:4
3    |
4 LL | fn Ц() {}
5    |    ^ help: convert the identifier to snake case: `ц`
6    |
7 note: the lint level is defined here
8   --> $DIR/lint-nonstandard-style-unicode-2.rs:3:11
9    |
10 LL | #![forbid(non_snake_case)]
11    |           ^^^^^^^^^^^^^^
12
13 error: function `分__隔` should have a snake case name
14   --> $DIR/lint-nonstandard-style-unicode-2.rs:22:4
15    |
16 LL | fn 分__隔() {}
17    |    ^^^^^^ help: convert the identifier to snake case: `分_隔`
18
19 error: aborting due to 2 previous errors
20