In this [testcase](https://github.com/lcompilers/lpython/blob/main/integration_tests/lpconvexhull/lpconvexhull_main.py), `current_scope->asr_owner` is pointing to `nullptr` when `orientation` dependency is being added. This simplest way to reproduce it is by adding this log at https://github.com/lcompilers/lpython/blob/main/src/lpython/semantics/python_ast_to_asr.cpp#L1190. ``` std::cout << ASRUtils::symbol_name(stemp) << " " << current_scope->asr_owner << std::endl; ``` It should log this : ``` orientation 0x0 ```