1#include <assert.h> 2#include <stdbool.h> 3 4int main() { 5 assert(false && "this is a test"); 6 return 0; 7} 8 9