spacevim/bundle/nvim-treesitter-0.9.1/tests/indent/dart/try.dart

14 lines
108 B
Dart
Raw Normal View History

2024-08-21 14:17:26 +08:00
void test() {
try{
} catch(e) {
}
}
// Issue #4632
class Test {
void test(){
try {
}
}
}