Files
rust/tests/ui/suggestions/auxiliary/issue-81839.rs

10 lines
129 B
Rust
Raw Normal View History

//@ edition:2018
2021-02-18 16:47:01 +03:00
pub struct Test {}
impl Test {
pub async fn answer_str(&self, _s: &str) -> Test {
Test {}
}
}