diff options
Diffstat (limited to 'src/test/compile-fail/liveness-block-unint.rs')
| -rw-r--r-- | src/test/compile-fail/liveness-block-unint.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/liveness-block-unint.rs b/src/test/compile-fail/liveness-block-unint.rs index 698f9f7cf79..e341ed33c2f 100644 --- a/src/test/compile-fail/liveness-block-unint.rs +++ b/src/test/compile-fail/liveness-block-unint.rs @@ -2,6 +2,6 @@ fn force(f: fn()) { f(); } fn main() { let x: int; force(fn&() { - log(debug, x); //! ERROR capture of possibly uninitialized variable: `x` + log(debug, x); //~ ERROR capture of possibly uninitialized variable: `x` }); } |
