rust/tests/ui/regions/regions-bound-lists-feature-gate-2.rs
2026-02-17 10:54:04 +00:00

11 lines
128 B
Rust

//@ run-pass
#![allow(dead_code)]
trait Foo {
fn dummy(&self) { }
}
fn foo<'a, 'b, 'c:'a+'b, 'd>() {
}
pub fn main() { }