diff options
Diffstat (limited to 'src/test/compile-fail/liveness-uninit.rs')
| -rw-r--r-- | src/test/compile-fail/liveness-uninit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/liveness-uninit.rs b/src/test/compile-fail/liveness-uninit.rs index 1930a2e3352..59bb9e847dc 100644 --- a/src/test/compile-fail/liveness-uninit.rs +++ b/src/test/compile-fail/liveness-uninit.rs @@ -2,5 +2,5 @@ fn foo(x: int) { log(debug, x); } fn main() { let x: int; - foo(x); //! ERROR use of possibly uninitialized variable: `x` + foo(x); //~ ERROR use of possibly uninitialized variable: `x` } |
