rust/src/test/ui/regions/regions-bound-lists-feature-gate-2.rs
2019-07-27 18:56:16 +03:00

15 lines
189 B
Rust

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