mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
MPE layout code to exclusively use the new code. The key observation: existing reflection metadata seems to already provide enough information in all cases, so we can abandon an earlier effort to add spare bitmask data. Resolves rdar://129281368
11 lines
116 B
Swift
11 lines
116 B
Swift
|
|
public enum E1_resilient {
|
|
case a
|
|
case b
|
|
}
|
|
|
|
public enum E2_resilient {
|
|
case c(E1_resilient)
|
|
case d(E1_resilient)
|
|
}
|