blob: 3a2942df66393260d05581343b9241ce119c9066 [file] [log] [blame]
// RUN: %clangxx_lsan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s
extern "C"
const char *__lsan_default_options() {
// CHECK: Available flags for {{Leak|Address|HWAddress}}Sanitizer:
return "verbosity=1 help=1";
}
int main() {
return 0;
}