If a `{{yield}}` tag is preceded by a DOM element, the compiler throws an exception [here](https://github.com/sveltejs/svelte/blob/4fe20fb383d4265502b33757b0247d518fb730b9/src/generators/dom/preprocess.js#L267). `child._state` is undefined. Attempting to compile this, for example, will trigger the exception: ```html <div></div> {{yield}} ``` It doesn't happen with e.g. `<div>{{yield}}</div>`. This wasn't happening before 1.18.0, so it's likely caused by the change to use fewer anchors.