diff options
Diffstat (limited to 'tests/ui/where-clauses/where-clause-early-bound-lifetimes.rs')
-rw-r--r-- | tests/ui/where-clauses/where-clause-early-bound-lifetimes.rs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/where-clauses/where-clause-early-bound-lifetimes.rs b/tests/ui/where-clauses/where-clause-early-bound-lifetimes.rs new file mode 100644 index 000000000..6fc570b9b --- /dev/null +++ b/tests/ui/where-clauses/where-clause-early-bound-lifetimes.rs @@ -0,0 +1,18 @@ +// run-pass +#![allow(non_upper_case_globals)] + +// pretty-expanded FIXME #23616 + +trait TheTrait { fn dummy(&self) { } } + +impl TheTrait for &'static isize { } + +fn foo<'a,T>(_: &'a T) where &'a T : TheTrait { } + +fn bar<T>(_: &'static T) where &'static T : TheTrait { } + +fn main() { + static x: isize = 1; + foo(&x); + bar(&x); +} |