Open
Description
If a user want to create a class/struct/enum that as the same name as a public data type in Postal. The compiler will conflict with Postal class name and the Postal module.
e.g.
// Target1:
struct Address {
}
let postalAddress: Postal.Address = ... // Don't compile - try to find a nested type of the class Postal
let targetAddress: Address = ... // Compile but Target.Address
It is a known bug and I thought swift3 would fix this issue but it didn't and it becomes really annoying to whoever want to have a class named Address
, or MessageHeader
(every public class in Postal) for a complete other purpose...
To fix this I would propose to rename the Postal
class for PostalClient
. @jeremiegirault WDYT ?