blob: 5a7ba8e26a77dec5cc4107f57a49c92973d7bf1c [file] [log] [blame]
Eli Friedmana7dedf72010-09-06 00:10:32 +00001// RUN: %clang_cc1 -verify -emit-llvm-only
2
3// PR7242: Check that this doesn't crash.
4int main(void)
5{
6 int __negative = 1;
7 const int __max = __negative && 0 ;
8 __max / 0;
9}