]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/manual_async_fn.rs
Merge commit '984330a6ee3c4d15626685d6dc8b7b759ff630bd' into clippyup
[rust.git] / src / tools / clippy / tests / ui / manual_async_fn.rs
index ddc453ffdb7500958c5e26cbf62a65a4859640f7..b05429da6622500a9b35a606ed4967317419cb85 100644 (file)
@@ -52,7 +52,7 @@ async fn already_async() -> impl Future<Output = i32> {
     async { 42 }
 }
 
-struct S {}
+struct S;
 impl S {
     fn inh_fut() -> impl Future<Output = i32> {
         async {