lvalue.cpp revision f9d3cbbe07afa05c2414c7120d7141409e5a3663
1// RUN: %clang_cc1 -analyze -analyzer-check-objc-mem -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