6 lines
81 B
C++
6 lines
81 B
C++
|
|
// clang-analyzer-deadcode.DeadStores
|
|
void test() {
|
|
int x;
|
|
x = 1; // warn
|
|
}
|