icu/testdata/message2/unsupported-statements.json
Tim Chevalier 2f348f4c7a ICU-22902 Remove support for Unsupported, Private & Reserved constructs
Matching PR #883 in the message-format-wg repo.

Also move spec tests for unsupported statements and expressions into new files
to serve as syntax error tests.
2024-09-20 17:29:07 -07:00

27 lines
681 B
JSON

{
"scenario": "Reserved statements",
"description": "Tests for unsupported statements (now syntax errors)",
"defaultTestProperties": {
"locale": "en-US",
"expErrors": [
{
"type": "syntax-error"
}
]
},
"tests": [
{ "src" : ".i {1} {{}}" },
{ "src" : ".l $y = {|bar|} {{}}" },
{ "src" : ".l $x.y = {|bar|} {{}}" },
{ "src": ".matc {-1} {{hello}}" },
{ "src": ".m {-1} {{hello}}" },
{ "src": ".n{a}{{}}" },
{ "src": ".foo {42} {{bar}}" },
{ "src": ".foo{42}{{bar}}" },
{ "src": ".foo |}lit{| {42}{{bar}}" },
{ "src": ".n .{a}{{}}" },
{ "src": ".n. {a}{{}}" },
{ "src": ".n.{a}{b}{{}}" }
]
}