lvalue.cpp revision c4d2c9074be6eb2091086eddd6c8f052f3b245c8
1// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store=region -verify %s
2
3int f1() {
4  int x = 0, y = 1;
5  return x += y; // Should bind a location to 'x += y'. No crash.
6}
7