blob: 59328a491f668d85f71688f39e4152c0167388f3 [file] [log] [blame]
#include <iostream>
int main() {
int *p = nullptr;
// This is an intentional bug, to test static analysis.
std::cout << *p << std::endl;
return 1;
}