diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-04-02 12:28:56 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-04-02 12:28:56 +0200 |
commit | 4bf42322fdd5dd7e01a3f61272bccc4a66a5585f (patch) | |
tree | 158d5f6c960b94923f573bf95d4ee970e87487b6 /tests/attribute/buildfile | |
parent | 1214dffc272f6f0ffee4e8ec203804b21023930d (diff) |
Add attribute syntax infrastructure
Diffstat (limited to 'tests/attribute/buildfile')
-rw-r--r-- | tests/attribute/buildfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/attribute/buildfile b/tests/attribute/buildfile new file mode 100644 index 0000000..6675894 --- /dev/null +++ b/tests/attribute/buildfile @@ -0,0 +1,21 @@ +#[] # error: standalone attribute sequence +#[foo] # error: standalone attribute sequence +#[[] # error: expected name instead of '[' +#[foo # error: expected ']' instead of <newline> +#[dir/file{foo}] # error: invalid attribute key +#[foo=dir/file{bar}] # error: invalid attribute key + +#[foo] print hello # error: attributes before print +#[foo]./: # error: attributes before directory scope +#{ +#} +#[foo]./: # error: attributes before target/scope +#./: [foo] buildfile # error: attributes before prerequisites +#import [foo] libz # error: attributes without variable + +#foo="F[O]O" +#[{x y z}] +#[$foo] +#["[]"] + +./: |