You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During migration from Xcode 11.2.1 to 11.4.1 we noticed that the following usage of typealiases and generics started to lead to an EXC_BAD_ACCESS crash:
Obj-c code:
ObjcClass
ObjcProtocol
Swift code:
typealiasSomeType = ObjcClass & ObjcProtocolclassTestClass<T: SomeType> {
}
// An attempt to initialize TestClass with SomeType:_ = TestClass<SomeType>() // EXC_BAD_ACCESS
I simplified this example as much as I could. This crash also is possible to reproduce with Xcode 11.5 and 11.6-beta
The text was updated successfully, but these errors were encountered:
Additional Detail from JIRA
md5: f51dcd8dca6e6fbd3947e42192a82c9a
Issue Description:
During migration from Xcode 11.2.1 to 11.4.1 we noticed that the following usage of typealiases and generics started to lead to an EXC_BAD_ACCESS crash:
Obj-c code:
ObjcClass
ObjcProtocol
Swift code:
I simplified this example as much as I could. This crash also is possible to reproduce with Xcode 11.5 and 11.6-beta
The text was updated successfully, but these errors were encountered: