[Flang][OpenMP]Add parsing support for DISPATCH construct (#121982)
[llvm-project.git] / compiler-rt / test / lsan / TestCases / default_options.cpp
blob3a2942df66393260d05581343b9241ce119c9066
1 // RUN: %clangxx_lsan -O2 %s -o %t && %run %t 2>&1 | FileCheck %s
3 extern "C"
4 const char *__lsan_default_options() {
5 // CHECK: Available flags for {{Leak|Address|HWAddress}}Sanitizer:
6 return "verbosity=1 help=1";
9 int main() {
10 return 0;