mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This seems to be failing more regularly now and is often blocking CI. Disable for now while we investigate.
10 lines
290 B
Swift
10 lines
290 B
Swift
// REQUIRES: rdar116486638
|
|
|
|
// RUN: not %sourcekitd-test -req=diags %s -print-raw-response -id=diag -async -- %s == -cancel=diag 2>&1 | %FileCheck --dump-input=always %s
|
|
|
|
func foo(x: Invalid1, y: Invalid2) {
|
|
x / y / x / y / x / y / x / y
|
|
}
|
|
|
|
// CHECK: error response (Request Cancelled)
|