Files
tubestation/tools/clang-tidy/test/clang-analyzer-core.CallAndMessage.cpp

11 lines
83 B
C++

struct S {
int x;
};
void f(struct S s);
void test() {
struct S s;
f(s);
}