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

19 lines
219 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 {
%( )
};