hanchenye-llvm-project/compiler-rt/lib/asan/lit_tests/interface_test.cc

9 lines
245 B
C++

// 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;
}