diff options
Diffstat (limited to 'src/test/compile-fail/borrowck-uninit.rs')
| -rw-r--r-- | src/test/compile-fail/borrowck-uninit.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/borrowck-uninit.rs b/src/test/compile-fail/borrowck-uninit.rs index a6ce736c89b..a64216df6c7 100644 --- a/src/test/compile-fail/borrowck-uninit.rs +++ b/src/test/compile-fail/borrowck-uninit.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -fn foo(x: int) { info!("{}", x); } +fn foo(x: int) { println!("{}", x); } fn main() { let x: int; |
