]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/manual_async_fn.fixed
Merge commit '984330a6ee3c4d15626685d6dc8b7b759ff630bd' into clippyup
[rust.git] / src / tools / clippy / tests / ui / manual_async_fn.fixed
index 136cc96be70cafa57951fc7edd89c784892803b1..b7e46a4a8ccc284cb9b8a5640e00bc944a762314 100644 (file)
@@ -38,7 +38,7 @@ async fn already_async() -> impl Future<Output = i32> {
     async { 42 }
 }
 
-struct S {}
+struct S;
 impl S {
     async fn inh_fut() -> i32 {
         // NOTE: this code is here just to check that the indentation is correct in the suggested fix