swift
swift copied to clipboard
The Swift Programming Language
When two conflicting generic arguments have the same base type name (e.g., due to two imported modules exporting types with the same name), the error message that's printed is quite...
The IsolatedConformances feature moves to a normal, supported feature. Remove all of the experimental-feature flags on test cases and such. The InferIsolatedConformances feature moves to an upcoming feature for Swift...
This change emits debug info for witness tables passed into generic functions when a generic type is constrained to a protocol. This information is required for LLDB's generic expression evaluator...
The new runtime build had been enabled on macOS smoke testing, but not on the full macOS PR testing. Apparently the full PR testing does not run both, even though...
Key functions' coroutine kind off the platform and provide optional flags for overriding. rdar://148941214
Swift CI tests visionOS, but PR testing does not. Oops.
**Explanation**: Loosen filecheck lines in this test. Platforms with ptrauth are a bit different, so loosen the check lines for them. **Scope**: Affects this test. **Issue**: rdar://148907715 **Original PR**: https://github.com/swiftlang/swift/pull/80673...
To optionally permit ptrauth. rdar://148907715
These previously failed because they used '/' as the path separator instead of '\'. While both are accepted on Windows, the latter is preferred and used to construct new paths,...
### Description `kevent` is both a function and a structure. In the general case, the compiler can tell which one I'm using. However, when there is another `kevent` in scope...