fune/tools/clang-tidy/test/clang-analyzer-core.CallAndMessage.cpp
2018-10-02 14:10:32 +00:00

10 lines
83 B
C++

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