1--TEST--
2"format" filter
3--TEMPLATE--
4{{ string|format(foo, 3) }}
5--DATA--
6return ['string' => '%s/%d', 'foo' => 'bar']
7--EXPECT--
8bar/3
9