Home | History | Annotate | Download | only in TestCases
      1 // Check that user may include ASan interface header.
      2 // RUN: %clang_asan %s -o %t && %t
      3 // RUN: %clang %s -o %t && %t
      4 #include <sanitizer/asan_interface.h>
      5 
      6 int main() {
      7   return 0;
      8 }
      9