module math.all;
public:
import geometry;
import vectors;
---
module vectors;
struct Vector {}
---
module geometry;
import math.all: Vector;
And then I get an error like: vectors.Vector conflicts with
geometry.Vector
Its the same Vector, though. What can I do?
