Files
icu4c/testdata/message2/alias-selector-annotations.json
Christoph M. Becker b5cdbf1d61 Vanilla icu4c 76.1
2024-10-31 22:27:43 +01:00

19 lines
549 B
JSON

{
"scenario": "Selector annotations",
"description": "Tests for indirectly annotated selectors",
"defaultTestProperties": {
"locale": "en-US"
},
"tests": [
{
"src": ".local $one = {|The one| :string}\n .match {$one}\n 1 {{Value is one}}\n * {{Value is not one}}",
"exp": "Value is not one"
},
{
"src": ".local $one = {|The one| :string}\n .local $two = {$one}\n .match {$two}\n 1 {{Value is one}}\n * {{Value is not one}}",
"exp": "Value is not one"
}
]
}