If a classic notebook contains a Mutable
then importing the cell into a notebook via
import {foo} from "observable:…"
and displaying it via
fails with the error
RuntimeError: null is not an object (evaluating '_.generator')
Minimal repro
<!doctype html>
<notebook>
<script type="module">
import {foo} from "observable:d/3a120539ecaa0449@70"
</script>
<script type="module">
foo
</script>
</notebook>