Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Accessing x.Type forces x to be considered a type name #78988

Open
dabrahams opened this issue Jan 28, 2025 · 0 comments
Open

Accessing x.Type forces x to be considered a type name #78988

dabrahams opened this issue Jan 28, 2025 · 0 comments
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels

Comments

@dabrahams
Copy link
Contributor

Description

import IR

struct Register {
  let type: IR.Type // <== error: cannot find type 'IR' in scope
}

There's no actual problem here and I claim that in this context the compiler need not force Type to be treated as a keyword. It should look up the base name IR first and see that it's a module. If you disagree, then at least the error message can be improved.

Reproduction

// module A 
struct Type {} 
// module B
import A
typealias Type = A.Type

Expected behavior

Compile without error or at least give a better error message. I spent an hour scratching my head before the workaround occurred to me.

Environment

swift-driver version: 1.115 Apple Swift version 6.0 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)
Target: arm64-apple-macosx15.0

Additional information

No response

@dabrahams dabrahams added bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels labels Jan 28, 2025
@dabrahams dabrahams changed the title Accessing x.Type forces x to be considered a type nam Accessing x.Type forces x to be considered a type name Jan 28, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug A deviation from expected or documented behavior. Also: expected but undesirable behavior. triage needed This issue needs more specific labels
Projects
None yet
Development

No branches or pull requests

1 participant