blob: dc9d0652c8c353e3c00293631072f2a227f5b425 [file] [log] [blame]
Stephen Hines2d1fdb22014-05-28 23:58:16 -07001// Check that user may include ASan interface header.
2// RUN: %clang_asan %s -o %t && %run %t
3// RUN: %clang_asan -x c %s -o %t && %run %t
4// RUN: %clang %s -o %t && %run %t
5// RUN: %clang -x c %s -o %t && %run %t
6#include <sanitizer/asan_interface.h>
7
8int main() {
9 return 0;
10}