Files
swift-mirror/test/multifile/Inputs/protocol-extension-init-helper.swift
John McCall 05c951fdc9 Compute layout when emitting an other-constructor reference.
Fixes SE-9233, a crash due to a failure to validate a storage
declaration within a protocol when generating a call to an
initiializer.
2018-11-13 16:35:26 -05:00

5 lines
49 B
Swift

protocol P {
init()
var x: Int { get set }
}