diff --git a/src/dfmt/ast_info.d b/src/dfmt/ast_info.d index 961b8f9..56030f1 100644 --- a/src/dfmt/ast_info.d +++ b/src/dfmt/ast_info.d @@ -210,7 +210,10 @@ final class FormatVisitor : ASTVisitor { if (auto bd = functionBody.specifiedFunctionBody) { - astInformation.funBodyLocations ~= bd.blockStatement.startLocation; + if (bd.blockStatement) + { + astInformation.funBodyLocations ~= bd.blockStatement.startLocation; + } } functionBody.accept(this); }