minix/external/bsd/llvm/dist/clang/test/Analysis/casts.cpp

13 lines
244 B
C++
Raw Normal View History

// RUN: %clang_cc1 -analyze -analyzer-checker=core -analyzer-store=region -verify %s
// expected-no-diagnostics
bool PR14634(int x) {
double y = (double)x;
return !y;
}
bool PR14634_implicit(int x) {
double y = (double)x;
return y;
}