// RUN: %target-swift-frontend %s -emit-ir protocol A { associatedtype Coordinate: Strideable func doSomething(_: Range) -> Coordinate.Stride } extension A where Coordinate == Int { func extensionFunc(_ range: Range) { _ = doSomething(range) } }