Description
Previous ID | SR-898 |
Radar | rdar://problem/19481048 |
Original Reporter | mkadijk (JIRA User) |
Type | Bug |
Environment
Apple Swift version 2.1.1 (swiftlang-700.1.101.15 clang-700.1.81) / Xcode Version 7.2.1 (7C1002) / iOS 9.2
Additional Detail from JIRA
Votes | 18 |
Component/s | Compiler |
Labels | Bug |
Assignee | None |
Priority | Medium |
md5: ea3a4fb46f14a67b99d4cb07142d5803
blocks:
- SR-14195 Swift emits an invalid module interface when a public type has the same name as a module
is duplicated by:
- SR-1386 Can't reference a type inside a module that has a type whose name is the same as the module
- SR-1389 Types in modules cannot be uniquely referenced if a type and module have the same name.
- SR-4801 Name resolution problem for packages with same-named data types
- SR-5110 Name collision not solved with namespacing
- SR-6705 Symbol with the name of the module overrides module namespace
- SR-7909 Module type namespace collision
- SR-12647 Error in parsing module interface when class have the same name with the framework
Issue Description:
Given two modules with the same type, where one module has a type that has the same name as the module itself with generic parameters it will become impossible to explicitly refer to the type you want.
Example
Module A:
struct NoError: ErrorType {}
Module B:
struct B<T> {}
struct NoError: ErrorType {}
The app:
import A
import B
let ambiguousError: NoError // This correctly errors because it's ambiguous
let errorA: A.NoError // This correctly works since we make the module explicit
let errorB: B.NoError // This _incorrectly_ errors, complaining about required arguments
Expected behaviour
Only ambiguousError
should give an error, the other two error constants should work since the module is specified to prevent ambiguous type errors.
What happend instead
The error we get with B.NoError
is Reference to generic type 'B' requires arguments in <...>
. The compiler incorrectly assumes we are referring to struct B
instead of the module B. This makes it impossible to fix the ambiguity.
Workaround
It is possible to work around this by creating a typealias
in a seperate file where we only import module B and there typealias BNoError = NoError
then we can use the BNoError
as the type of let errorB
to work around the issue.