]> git.proxmox.com Git - rustc.git/blame - src/test/ui/lint/lint-non-snake-case-lifetimes.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / lint / lint-non-snake-case-lifetimes.rs
CommitLineData
1a4d82fc
JJ
1#![deny(non_snake_case)]
2#![allow(dead_code)]
223e47cc 3
0731742a 4fn f<'FooBar>( //~ ERROR lifetime `'FooBar` should have a snake case name
1a4d82fc
JJ
5 _: &'FooBar ()
6) {}
223e47cc
LB
7
8fn main() { }