brintos

brintos / llvm-project-archived public Read only

0
0
Text · 264 B · 0cef5e3 Raw
13 lines · cpp
1// RUN: %clang_analyze_cc1 -verify %s \2// RUN:   -analyzer-output=plist -o %t.plist \3// RUN:   -analyzer-checker=core \4// RUN:   -analyzer-checker=debug.ReportStmts5 6struct h {7  operator int();8};9 10int k() {11  return h(); // expected-warning 3 {{Statement}}12}13