]> git.proxmox.com Git - rustc.git/blame - 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
CommitLineData
0731742a
XL
1error: lifetime `'FooBar` should have a snake case name
2 --> $DIR/lint-non-snake-case-lifetimes.rs:4:6
b7449926 3 |
532ac7d7 4LL | fn f<'FooBar>(
0731742a 5 | ^^^^^^^ help: convert the identifier to snake case: `'foo_bar`
b7449926 6 |
74b04a01 7note: the lint level is defined here
0731742a 8 --> $DIR/lint-non-snake-case-lifetimes.rs:1:9
b7449926
XL
9 |
10LL | #![deny(non_snake_case)]
11 | ^^^^^^^^^^^^^^
12
13error: aborting due to previous error
14