1: doctype "Fallbacks.g.etl" context "NonEmptyFallbacks";
     2: 
     3: // The line below demonstrate correct statement
     4: /// a documentation
     5: @[ok] some test;
     6: 
     7: // The line below demonstrate errorneous blank statement 
     8: /// a documentation
     9: @[ok];
    10: 
    11: // The line below demonstrate error in the attributes
    12: /// a documentation
    13: @[1] some test;
    14: 
    15: // The line below demonstrate error in the statement
    16: /// a documentation
    17: @[ok] error;
Syntax Error (9,6): syntax.UnexpectedToken.expectingStatementFromContext
Syntax Error (13,3): syntax.UnexpectedToken.expectingKind
Syntax Error (17,7): syntax.UnexpectedToken.expectingStatementFromContext