brintos

brintos / llvm-project-archived public Read only

0
0
Text · 275 B · 58bb45e Raw
11 lines · cpp
1// RUN: %clang_analyze_cc1 -analyzer-checker=core,security.cert.env.InvalidPtr -verify %s2 3// expected-no-diagnostics4 5namespace other {6int strerror(int errnum); // custom strerror7void no_crash_on_custom_strerror() {8  (void)strerror(0); // no-crash9}10} // namespace other11