Ignore verbatim attrs
diff --git a/src/expr.rs b/src/expr.rs
index e8fe9f1..5d9ce1d 100644
--- a/src/expr.rs
+++ b/src/expr.rs
@@ -614,10 +614,7 @@
             | Expr::Async(ExprAsync { ref mut attrs, .. })
             | Expr::TryBlock(ExprTryBlock { ref mut attrs, .. })
             | Expr::Yield(ExprYield { ref mut attrs, .. }) => mem::replace(attrs, new),
-            Expr::Verbatim(_) => {
-                // TODO
-                Vec::new()
-            }
+            Expr::Verbatim(_) => Vec::new(),
         }
     }
 }