]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/issue_4266.rs
Fix `unnecessary_cast` suggestion when taking a reference
[rust.git] / tests / ui / issue_4266.rs
index 1538abb1d776d7a163af087c9a242fa045d944a9..8e0620e52b65fd6f5eb1c8f346ed264aad75d79a 100644 (file)
@@ -1,5 +1,5 @@
-// compile-flags: --edition 2018
 #![allow(dead_code)]
+#![allow(clippy::uninlined_format_args)]
 
 async fn sink1<'a>(_: &'a str) {} // lint
 async fn sink1_elided(_: &str) {} // ok
@@ -25,7 +25,9 @@ async fn all_to_one<'a>(a: &'a str, _b: &'a str) -> &'a str {
 struct Foo;
 impl Foo {
     // ok
-    pub async fn foo(&mut self) {}
+    pub async fn new(&mut self) -> Self {
+        Foo {}
+    }
 }
 
 // rust-lang/rust#61115