I have two classes, Foo and Bar, two distinct files, foo.fs and bar.fs
namespace Ganymede.Versioning
type foo = class
val Bar : bar
new(input) = { Bar = input }
end
namespace Ganymede.Versioning
type bar = class
val Test : string
new (input) = { Test = input; }
end
I get a "The type 'bar' is not defined." error inside class foo, for val Bar : bar
Why is that?
