blob: cf1d33c3a56d7883f835a85ad17e28fbda094d11 [file] [log] [blame] [edit]
//@ edition:2018
pub struct Test {}
impl Test {
pub async fn answer_str(&self, _s: &str) -> Test {
Test {}
}
}