teak-llvm/clang/test/Analysis/Inputs/system-header-simulator-for-nullability-cxx.h
George Karpenkov 405fdfc34c [analyzer] Do not crash in CallEvent.getReturnType()
When the call expression is not available.

llvm-svn: 328406
2018-03-24 01:53:12 +00:00

10 lines
75 B
C

#pragma clang system_header
struct S {
~S(){}
};
void foo() {
S s;
}