]> git.lizzy.rs Git - rust.git/blob - src/test/ui/error-codes/E0263.rs
Merge commit '9809f5d21990d9e24b3e9876ea7da756fd4e9def' into libgccjit-codegen
[rust.git] / src / test / ui / error-codes / E0263.rs
1 fn foo<'a, 'b, 'a>(x: &'a str, y: &'b str) {
2     //~^ ERROR E0263
3 }
4
5 fn main() {}