diff --git a/vyper/semantics/analysis/annotation.py b/vyper/semantics/analysis/annotation.py index a3cd50ada0..02fc0ffae4 100644 --- a/vyper/semantics/analysis/annotation.py +++ b/vyper/semantics/analysis/annotation.py @@ -184,8 +184,8 @@ def visit_Call(self, node, type_): for arg, arg_type in zip(node.args, call_type.arg_types): self.visit(arg, arg_type) else: + # note that mutability for`raw_call` is handled in its `build_IR` function mutable_builtins = ( - "raw_call", "create_minimal_proxy_to", "create_copy_of", "create_from_blueprint",