Files
swift-mirror/validation-test/Reflection/Inputs/reflect_Enum_values_resilient_enums.swift
Tim Kientzle 40eb3c084d Expand the work from #73491 to support more MPE layouts. This also switches the
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
2024-06-05 10:15:58 -07:00

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)
}