blob: 428a109fe70dec7e9d2d4c2d4112b0585277322e [file] [log] [blame]
// Check that user may include ASan interface header.
// RUN: %clang -fsanitize=address -I %p/../../../include %s -o %t && %t
// RUN: %clang -I %p/../../../include %s -o %t && %t
#include <sanitizer/asan_interface.h>
int main() {
return 0;
}