fune/tools/clang-tidy/test/readability-inconsistent-declaration-parameter-name.cpp
2018-11-30 06:36:07 -05:00

6 lines
No EOL
52 B
C++

struct S {
void f(int x);
};
void S::f(int y) {
}