llvm-project/clang/test/Index/index-designated-init-recovery.cpp
Haojian Wu c2c36c4f4b [clang][index] Fix a crash for accessing a null field decl.
getField() may return a nullptr, we already did that in
BodyIndexer::VisitDesignatedInitExpr, but missed one place.
2020-05-21 09:47:36 +02:00

9 lines
260 B
C++

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