1
Files
fluent-java/fluent.syntax/src/test/resources/reference_fixtures/placeables.ftl
Voomra 499c699cd1 feat: fluent.syntax
Портирование кода из fluent-kotlin
https://github.com/projectfluent/fluent-kotlin
2025-07-21 15:23:11 +03:00

16 lines
311 B
Plaintext

nested-placeable = {{{1}}}
padded-placeable = { 1 }
sparse-placeable = { { 1 } }
# ERROR Unmatched opening brace
unmatched-open1 = { 1
# ERROR Unmatched opening brace
unmatched-open2 = {{ 1 }
# ERROR Unmatched closing brace
unmatched-close1 = 1 }
# ERROR Unmatched closing brace
unmatched-close2 = { 1 }}