1 // Check that user may include ASan interface header.
2 // RUN: %clang -fsanitize=address -I %p/../../../include %s -o %t && %t
3 // RUN: %clang -I %p/../../../include %s -o %t && %t
4 #include <sanitizer/asan_interface.h>
5
6 int main() {
7 return 0;
8 }
9