-
Notifications
You must be signed in to change notification settings - Fork 108
Enable Library Evolution in package builds for public library targets #951
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -199,7 +199,7 @@ public struct Configuration: Sendable { | |
/// property is pre-configured. Otherwise, the default value of this property | ||
/// records an issue indicating that it has not been configured. | ||
@_spi(Experimental) | ||
public var exitTestHandler: ExitTest.Handler = { _ in | ||
public var exitTestHandler: ExitTest.Handler = { exitTest in | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. After I enabled Library Evolution, I got a compiler crash when building with a
The closure parameter is of type There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's bizarre. Okay. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Actually I think this might be the same issue as the one you just had to work around? @jckarter? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a different issue than swiftlang/swift#79304 |
||
throw SystemError(description: "Exit test support has not been implemented by the current testing infrastructure.") | ||
} | ||
#endif | ||
|
Uh oh!
There was an error while loading. Please reload this page.