diff options
| author | Daniel Micay <danielmicay@gmail.com> | 2013-05-03 19:25:04 -0400 |
|---|---|---|
| committer | Daniel Micay <danielmicay@gmail.com> | 2013-05-03 20:01:42 -0400 |
| commit | 86efd97a10fda1f81f5bead0de36e3343a9faa0e (patch) | |
| tree | f41cc124a23b659f8724524034af931ca84fd2fe /src/test/compile-fail/liveness-uninit.rs | |
| parent | bfd3cd8171bee519093f570264e5a2b1dc17e9d8 (diff) | |
| download | rust-86efd97a10fda1f81f5bead0de36e3343a9faa0e.tar.gz rust-86efd97a10fda1f81f5bead0de36e3343a9faa0e.zip | |
add gitattributes and fix whitespace issues
Diffstat (limited to 'src/test/compile-fail/liveness-uninit.rs')
| -rw-r--r-- | src/test/compile-fail/liveness-uninit.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/compile-fail/liveness-uninit.rs b/src/test/compile-fail/liveness-uninit.rs index 8797132fd50..a360f8e85a6 100644 --- a/src/test/compile-fail/liveness-uninit.rs +++ b/src/test/compile-fail/liveness-uninit.rs @@ -11,6 +11,6 @@ fn foo(x: int) { debug!(x); } fn main() { - let x: int; - foo(x); //~ ERROR use of possibly uninitialized variable: `x` + let x: int; + foo(x); //~ ERROR use of possibly uninitialized variable: `x` } |
