1: doctype "Fallbacks.g.etl" context "EmptyFallbacks";
2:
3: // The line below demonstrate correct non-empty statement
4: /// a documentation
5: @[ok] some test;
6:
7: // The line below demonstrate correct empty statement
8: /// a documentation
9: @[ok];
10:
11:
12: // The line below demonstrate error in the attributes
13: /// a documentation
14: @[1] some test;
15:
16: // The line below demonstrate error in the statement
17: /// a documentation
18: @[ok] error;