]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-bound-lists-feature-gate-2.rs
Rollup merge of #97317 - GuillaumeGomez:gui-settings-text-click, r=jsha
[rust.git] / src / test / ui / regions / regions-bound-lists-feature-gate-2.rs
1 // run-pass
2 #![allow(dead_code)]
3 #![allow(stable_features)]
4
5 #![feature(issue_5723_bootstrap)]
6
7 trait Foo {
8     fn dummy(&self) { }
9 }
10
11 fn foo<'a, 'b, 'c:'a+'b, 'd>() {
12 }
13
14 pub fn main() { }