]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/auxiliary/issue-81839.rs
Merge commit '1d8491b120223272b13451fc81265aa64f7f4d5b' into sync-from-rustfmt
[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 }