Correctly serialize `String`s in XML (#1832)
The logic that keeps track of whether we're working with a borrowed or an owned value is flawed. It just so happened to work when requesting owned values from borrowed values because we called `autoDeref` before creating the value expression. That logic should instead be used _within_ `ValueExpression` to appease Clippy there too. Fixes #1831.
Loading
Please register or sign in to comment