blob: bb0be869ee76772fa9d01b7fe1f64da8720e2442 [file] [log] [blame]
// RUN: %clang_analyze_cc1 -w -analyzer-checker=core -fblocks -verify %s
// expected-no-diagnostics
typedef struct {
int x;
} S;
void foo() {
^{
S s;
return s; // no-crash
};
}