diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2013-07-17 03:08:08 +1000 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2013-07-17 03:10:13 +1000 |
| commit | e4f7561bcdf3b54dafefd478b86e1f7610e74348 (patch) | |
| tree | 6f4506b96626346a45157e2ed5122942ca932add /src/test/compile-fail/pattern-tyvar.rs | |
| parent | b48e37e8eecafe3cfc72062a9369aae245063e19 (diff) | |
| download | rust-e4f7561bcdf3b54dafefd478b86e1f7610e74348.tar.gz rust-e4f7561bcdf3b54dafefd478b86e1f7610e74348.zip | |
Clean-up tests after debug!/std-macros change.
The entire testsuite is converted to using info! rather than debug! because some depend on the code within the debug! being trans'd.
Diffstat (limited to 'src/test/compile-fail/pattern-tyvar.rs')
| -rw-r--r-- | src/test/compile-fail/pattern-tyvar.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/compile-fail/pattern-tyvar.rs b/src/test/compile-fail/pattern-tyvar.rs index 4ca0aac35ee..49ad8f87de3 100644 --- a/src/test/compile-fail/pattern-tyvar.rs +++ b/src/test/compile-fail/pattern-tyvar.rs @@ -18,7 +18,7 @@ enum bar { t1((), Option<~[int]>), t2, } fn foo(t: bar) { match t { t1(_, Some::<int>(x)) => { - debug!(x); + info!(x); } _ => { fail!(); } } |
