Minor cleanup before release.

This commit is contained in:
Stephen Chung
2020-10-22 12:26:44 +08:00
parent e89d12c42f
commit 2c7c719cd5
16 changed files with 125 additions and 120 deletions

View File

@@ -158,13 +158,13 @@ fn test_function_captures() -> Result<(), Box<EvalAltResult>> {
*engine
.compile(
r#"
fn foo() { this += x; }
fn foo() { this += x; }
let x = 41;
let y = 999;
let x = 41;
let y = 999;
y.foo!();
"#
y.foo!();
"#
)
.expect_err("should error")
.0,