starlark 0.13.0

An implementation of the Starlark language in Rust.
Documentation
# @generated
# To regenerate, run:
# ```
# STARLARK_RUST_REGENERATE_GOLDEN_TESTS=1 cargo test -p starlark --lib
# ```

Code:
def test():
    x = {}
    x.setdefault(33, "x")
    y = x[44]

No errors.

Types:
y: typing.Never

Compiler typechecker (eval):
No errors.