1// RUN: %clangxx_lsan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s
2
3extern "C"
4const char *__lsan_default_options() {
5 // CHECK: Available flags for {{Leak|Address|HWAddress}}Sanitizer:
6 return "verbosity=1 help=1";
7}
8
9int main() {
10 return 0;
11}
12

source code of compiler-rt/test/lsan/TestCases/default_options.cpp