mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 16:53:39 +00:00
20 lines
294 B
Rust
20 lines
294 B
Rust
//@ check-pass
|
|
//@ edition:2018
|
|
|
|
struct Test(String);
|
|
|
|
impl Test {
|
|
async fn borrow_async(&self) {}
|
|
|
|
fn with(&mut self, s: &str) -> &mut Self {
|
|
self.0 = s.into();
|
|
self
|
|
}
|
|
}
|
|
|
|
async fn test() {
|
|
Test("".to_string()).with("123").borrow_async().await;
|
|
}
|
|
|
|
fn main() { }
|