mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
The `-serialize-diagnostics-path` option implies `-serialize-diagnostics`; there's no point in specifying both. Remove the extra flags from the tests.
7 lines
192 B
Swift
7 lines
192 B
Swift
// RUN: %sourcekitd-test -req=index %s -- -serialize-diagnostics-path %t.dia %s | %sed_clean > %t.response
|
|
// RUN: diff -u %s.response %t.response
|
|
|
|
protocol P {}
|
|
class C {
|
|
extension Int: P {}
|