summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-bound-lists-feature-gate-2.rs
blob: 2c7503799332512abed15ab0393ab4a6994f8750 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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() { }