kakoune/test/indent/c-family/close-function-with-struct-param/out
2023-10-25 12:51:16 +11:00

23 lines
211 B
Plaintext

void f(int i,
struct S s)
{
}
void g(int i,
struct S s) {
}
struct T {
void h(int i,
struct S s) const {
}
void i(int i,
struct S s) const final {
}
};