mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
Fixes SE-9233, a crash due to a failure to validate a storage declaration within a protocol when generating a call to an initiializer.
5 lines
49 B
Swift
5 lines
49 B
Swift
protocol P {
|
|
init()
|
|
var x: Int { get set }
|
|
}
|