blob: 5ed3ccce24000bb2787b99137dd7c05b41812366 [file] [log] [blame]
// RUN: true
import CoreGraphics
// Case 1 - witness is imported accessor
protocol OtherPoint {
associatedtype FloatType
var x: FloatType { get set }
var y: FloatType { get set }
}
extension CGPoint: OtherPoint {}
// Case 2 - witness is extension method of imported type
extension CGPoint {
var z: Float {
get { return 0.0 }
set { }
}
}