]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lint/lint-non-snake-case-lifetimes.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / lint / lint-non-snake-case-lifetimes.stderr
1 error: lifetime `'FooBar` should have a snake case name
2 --> $DIR/lint-non-snake-case-lifetimes.rs:4:6
3 |
4 LL | fn f<'FooBar>(
5 | ^^^^^^^ help: convert the identifier to snake case: `'foo_bar`
6 |
7 note: the lint level is defined here
8 --> $DIR/lint-non-snake-case-lifetimes.rs:1:9
9 |
10 LL | #![deny(non_snake_case)]
11 | ^^^^^^^^^^^^^^
12
13 error: aborting due to previous error
14