summaryrefslogtreecommitdiff
path: root/test/asan/TestCases/interface_test.cc
blob: 297b5526e9d9fd357cb7aa5768c6735b105cb746 (plain)
1
2
3
4
5
6
7
8
// 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;
}