For the following code ``` schema Name: name: str n2 = Name { # Expect a compile error instead of a runtime error } config = { name: "Alice" } n2 = Name { **config # Note it's ok here } ```