mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
Transfer the fix in #42131 to the typelayout lowering code. Noticed as part of investigating the fix for #60590.
10 lines
133 B
Swift
10 lines
133 B
Swift
public enum ProblematicEnumeration<T> {
|
|
case zero(T)
|
|
case one(Bool)
|
|
case two
|
|
case three
|
|
case four
|
|
case five
|
|
case six
|
|
}
|