summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/auxiliary/issue-81839.rs
blob: 5683c45adf26d0c07c1b54e042e6cf228bd4ea6a (plain)
1
2
3
4
5
6
7
8
9
// edition:2018

pub struct Test {}

impl Test {
    pub async fn answer_str(&self, _s: &str) -> Test {
        Test {}
    }
}