]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/auxiliary/issue-81839.rs
Rollup merge of #106446 - bzEq:fix-unwind-lsda, r=Amanieu
[rust.git] / tests / ui / suggestions / auxiliary / issue-81839.rs
1 // edition:2018
2
3 pub struct Test {}
4
5 impl Test {
6     pub async fn answer_str(&self, _s: &str) -> Test {
7         Test {}
8     }
9 }