Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
single-use-lifetime
/
zero-uses-in-impl.rs
blob: 54803e1d2be4248dd652275b93f01b1d58addddb [
file
] [
log
] [
blame
] [
edit
]
// Test that we DO warn when lifetime name is not used at all.
#![
deny
(
unused_lifetimes
)]
#![
allow
(
dead_code
,
unused_variables
)]
struct
Foo
{}
impl
<
'a> Foo {} //~ ERROR `'
a
`
never used
fn
main
()
{}