blob: e916e7fb3c1d5139237a5e0a184da2784fb067b2 [file] [log] [blame]
Peter Collingbourne49d29ed2013-10-20 21:29:32 +00001// RUN: %clangxx -fsanitize=bool %s -O3 -o %T/bool.exe && %T/bool.exe 2>&1 | FileCheck %s
Richard Smithe3eb6522012-12-13 07:12:20 +00002
3unsigned char NotABool = 123;
4
5int main(int argc, char **argv) {
6 bool *p = (bool*)&NotABool;
7
Nick Lewycky43ac4012013-10-02 05:05:28 +00008 // CHECK: bool.cpp:9:10: runtime error: load of value 123, which is not a valid value for type 'bool'
Richard Smithe3eb6522012-12-13 07:12:20 +00009 return *p;
10}