rust/tests/ui/lint/unused/issue-104397.rs
2024-02-16 20:02:50 +00:00

19 lines
252 B
Rust

//@ check-pass
#![warn(unused)]
#![deny(warnings)]
struct Inv<'a>(#[allow(dead_code)] &'a mut &'a ());
trait Trait {}
impl Trait for for<'a> fn(Inv<'a>) {}
fn with_bound()
where
(for<'a> fn(Inv<'a>)): Trait,
{}
fn main() {
with_bound();
}