nvim-treesitter/tests/indent/c/label.c
2021-04-23 21:21:38 +02:00

7 lines
70 B
C

int foo(int x)
{
goto error;
return 0;
error:
return 1;
}