blob: 3cfd398ba7ef9b49499a736db8247491dda66997 [file] [log] [blame]
// RUN: %target-swift-frontend -primary-file %s -emit-ir -o -
// SR-7282
struct S<T> {}
extension S where T == Int {
typealias Callback = (Bool) -> Void
func process(callback: Callback) {
}
}