blob: 5202b2e7275c67c740223bd9311feb73ca92f6aa [file] [log] [blame]
// RUN: %sourcekitd-test -req=index %s -- -Xfrontend -serialize-diagnostics-path -Xfrontend %t.dia %s | %sed_clean > %t.response
// RUN: diff -u %s.response %t.response
protocol P {
typealias Index = Int
func f()
}
struct S : P {
typealias Index = Int
func f() {}
}