зеркало из https://github.com/microsoft/clang-1.git
27 строки
384 B
C
27 строки
384 B
C
// RUN: clang-cc -analyze -warn-dead-stores -warn-uninit-values -verify %s
|
|
|
|
void f1()
|
|
{
|
|
int i;
|
|
|
|
int j = i ? : 1; // expected-warning{{use of uninitialized variable}} //expected-warning{{Value stored to 'j' during its initialization is never read}}
|
|
}
|
|
|
|
void *f2(int *i)
|
|
{
|
|
return i ? : 0;
|
|
}
|
|
|
|
void *f3(int *i)
|
|
{
|
|
int a;
|
|
|
|
return &a ? : i;
|
|
}
|
|
|
|
void f4()
|
|
{
|
|
char c[1 ? : 2];
|
|
}
|
|
|