1--TEST--
2"with" tag with an expression that is not a hash
3--TEMPLATE--
4{% with vars %}
5    {{ foo }}{{ bar }}
6{% endwith %}
7--DATA--
8return ['vars' => 'no-hash']
9--EXCEPTION--
10Twig\Error\RuntimeError: Variables passed to the "with" tag must be a hash in "index.twig" at line 2.
11