nvim-treesitter/tests/indent/dart/try.dart
2023-05-05 14:57:51 +02:00

13 lines
108 B
Dart

void test() {
try{
} catch(e) {
}
}
// Issue #4632
class Test {
void test(){
try {
}
}
}