]> git.proxmox.com Git - rustc.git/blame - src/test/ui/async-await/async-fn-path-elision.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / async-await / async-fn-path-elision.rs
CommitLineData
48663c56
XL
1// edition:2018
2
48663c56
XL
3struct HasLifetime<'a>(&'a bool);
4
5async fn error(lt: HasLifetime) { //~ ERROR implicit elided lifetime not allowed here
6 if *lt.0 {}
7}
8
9fn no_error(lt: HasLifetime) {
10 if *lt.0 {}
11}
12
13fn main() {}