kakoune/test/indent/c-family/close-block/out
2023-10-25 12:51:16 +11:00

28 lines
255 B
Plaintext

template<typename T> struct A : B
{
struct C
{
void foo() {
bar();
}
};
};
struct D {
void baz() {
}
int qux;
};
if (true) {
if (true) {
foo;
}
bar;
}
foo(bar) {}
{
baz;
}