I have something like that, except that the module B is inside an include("...")
module A type foo x foo(x) = new(x) end module B import A.foo, Base.call const y = foo(1) end end I'm getting something like ERROR: LoadError: LoadError: ArgumentError: A not found in path I don't understand what's going on, someone can explain ? Thanks!