mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-18 13:06:40 +00:00

Following r363007, which reverted r362998, r362996, and r362994, reapply with adjustments for the CRLF differences encountered with Windows. Namely, the `-b` option of `diff` is employed, and the `grep` patterns have `$` replaced with `[[:space:]]*$`. llvm-svn: 363069
14 lines
416 B
C++
14 lines
416 B
C++
// RUN: %clang_analyze_cc1 -std=c++11 -analyzer-checker=core.DivideZero -analyzer-config inline-lambdas=true -analyzer-output plist -verify %s -o %t
|
|
// RUN: tail -n +11 %t | %normalize_plist | diff -ub %S/Inputs/expected-plists/lambda-notes.cpp.plist -
|
|
|
|
|
|
// Diagnostic inside a lambda
|
|
|
|
void diagnosticFromLambda() {
|
|
int i = 0;
|
|
[=] {
|
|
int p = 5/i; // expected-warning{{Division by zero}}
|
|
(void)p;
|
|
}();
|
|
}
|