Implement expr_no_struct
diff --git a/src/expr.rs b/src/expr.rs
index d8e1fec..0e37800 100644
--- a/src/expr.rs
+++ b/src/expr.rs
@@ -1098,7 +1098,9 @@
     }
 
     #[cfg(feature = "full")]
-    named2!(expr_no_struct -> Expr, shim!(ambiguous_expr, AllowStruct(false), AllowBlock(true)));
+    fn expr_no_struct(input: ParseStream) -> Result<Expr> {
+        ambiguous_expr(input, AllowStruct(false), AllowBlock(true))
+    }
 
     // Parse an arbitrary expression.
     #[cfg(feature = "full")]