blob: e087e4a40d1e3e73fa3123a08bae0ed802955a0b [file] [log] [blame]
// RUN: true
import CoreGraphics
protocol OtherPoint {
associatedtype FloatType
var x: FloatType { get set }
var y: FloatType { get set }
}
extension CGPoint: OtherPoint {}