mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
We don't finalize declarations when there's been an error, which means we might never assign types to the stored properties/cases of a nominal type from another file, which means that circularity checking for types using those types be re-delayed. Fixes SR-4594.
6 lines
69 B
Swift
6 lines
69 B
Swift
struct External {
|
|
var member: Something
|
|
}
|
|
|
|
struct OtherExternal {}
|