Open Quuxplusone opened 12 years ago
Attached Foo.cc
(755 bytes, text/x-c++src): testcase
cloned to rdar://problem/11075182
I hit this too doing runs against libc++. Here is an even simpler repro:
int main() {
int x=0;
try{
x=1; //change this to x++ makes scan-build happy.
}catch(...) {
}
}
Foo.cc
(755 bytes, text/x-c++src)