diff options
| author | Patrick Walton <pcwalton@mimiga.net> | 2012-12-27 17:53:04 -0800 |
|---|---|---|
| committer | Patrick Walton <pcwalton@mimiga.net> | 2012-12-27 17:53:04 -0800 |
| commit | e26ca35b081e96d709f318e668e06209e89b95e2 (patch) | |
| tree | 2ad76c644d465bc9a6007df2c0ee78ad5cc4cd07 /src/libsyntax | |
| parent | 84ce55e5427d0d36dbf6e330537175ab4162b6f2 (diff) | |
| download | rust-e26ca35b081e96d709f318e668e06209e89b95e2.tar.gz rust-e26ca35b081e96d709f318e668e06209e89b95e2.zip | |
librustc: Fix the test runner, the condition system, and core test. rs=bustage
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ext/expand.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libsyntax/ext/expand.rs b/src/libsyntax/ext/expand.rs index a9eff93e6b8..27565b44c6d 100644 --- a/src/libsyntax/ext/expand.rs +++ b/src/libsyntax/ext/expand.rs @@ -298,10 +298,10 @@ fn core_macros() -> ~str { { $c:ident: $in:ty -> $out:ty; } => { mod $c { - fn key(_x: @core::condition::Handler<$in,$out>) { } + fn key(_x: @::core::condition::Handler<$in,$out>) { } - pub const cond : core::condition::Condition<$in,$out> = - core::condition::Condition { + pub const cond : ::core::condition::Condition<$in,$out> = + ::core::condition::Condition { name: stringify!(c), key: key }; |
