nvim-treesitter/tests/indent/dart/switch.dart
2023-04-13 02:31:49 -07:00

9 lines
104 B
Dart

void test() {
final a = 69;
switch (a) {
case 69:
break;
case 420:
default:
}
}