diff --git a/src/main.cpp b/src/main.cpp index 13a2866..3398e36 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -98,6 +98,8 @@ std::optional compile(std::string_view in_filename) { // Perform static analysis typecheck::State typecheck_state{}; + typecheck_state.binops = types::create_binops(); + typecheck::Scope typecheck_scope{}; for (auto& tls : statements) { std::cout << tls->formatted() << std::endl;