blob: c5b12558af8e3786cd0087df2e1706e91828190d [file] [log] [blame]
import CoreGraphics
public protocol OtherPoint {
associatedtype FloatType
var x: FloatType { get set }
var y: FloatType { get set }
}
extension CGPoint: OtherPoint {}