brintos

brintos / llvm-project-archived public Read only

0
0
Text · 247 B · 3a2942d Raw
12 lines · cpp
1// RUN: %clangxx_lsan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s2 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