All elements on the context stack should be accessible. https://github.com/mustache/spec/blob/master/specs/sections.yml#L56-L93 ``` YAML - name: Deeply Nested Contexts desc: All elements on the context stack should be accessible. data: a: { one: 1 } b: { two: 2 } c: { three: 3 } d: { four: 4 } e: { five: 5 } template: | {{#a}} {{one}} {{#b}} {{one}}{{two}}{{one}} {{#c}} {{one}}{{two}}{{three}}{{two}}{{one}} {{#d}} {{one}}{{two}}{{three}}{{four}}{{three}}{{two}}{{one}} {{#e}} {{one}}{{two}}{{three}}{{four}}{{five}}{{four}}{{three}}{{two}}{{one}} {{/e}} {{one}}{{two}}{{three}}{{four}}{{three}}{{two}}{{one}} {{/d}} {{one}}{{two}}{{three}}{{two}}{{one}} {{/c}} {{one}}{{two}}{{one}} {{/b}} {{one}} {{/a}} expected: | 1 121 12321 1234321 123454321 1234321 12321 121 1 ```
All elements on the context stack should be accessible.
https://github.com/mustache/spec/blob/master/specs/sections.yml#L56-L93