mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
[embedded] Allow casting to tuples
This commit is contained in:
@@ -1010,8 +1010,7 @@ func isCastSupportedInEmbeddedSwift(from sourceType: Type,
|
||||
return false
|
||||
}
|
||||
|
||||
// Tuple?
|
||||
if !destType.isStruct && !destType.isClass && !destType.isEnum {
|
||||
if !destType.isStruct && !destType.isClass && !destType.isEnum && !destType.isTuple {
|
||||
return false
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user