Files
clang-p2996/compiler-rt/lib/asan/lit_tests/TestCases/interface_test.cc
2013-06-14 11:45:36 +00:00

9 lines
185 B
C++

// Check that user may include ASan interface header.
// RUN: %clang_asan %s -o %t && %t
// RUN: %clang %s -o %t && %t
#include <sanitizer/asan_interface.h>
int main() {
return 0;
}