1 struct Bar {};
2 struct Foo {
methodFoo3   void method(Bar bar) {}
4 };
NoCrash(Foo t)5 void NoCrash(Foo t) {
6   t.method({.abc = 50}); // CHECK: field designator 'abc' does not refer to any field in type 'Bar'
7 }
8 // RUN: c-index-test -index-file %s -Xclang -frecovery-ast 2>&1 | FileCheck %s
9