about summary refs log tree commit diff
path: root/src/test/run-pass-fulldeps/phase-syntax-link-does-resolve.rs
AgeCommit message (Collapse)AuthorLines
2015-01-05Replace #[phase] with #[plugin] / #[macro_use] / #[no_link]Keegan McAllister-26/+0
2014-06-09Use phase(plugin) in testsKeegan McAllister-1/+1
2014-04-23Enable use of syntax extensions when cross compiling.Douglas Young-10/+3
This adds the target triple to the crate metadata. When searching for a crate the phase (link, syntax) is taken into account. During link phase only crates matching the target triple are considered. During syntax phase, either the target or host triple will be accepted, unless the crate defines a macro_registrar, in which case only the host triple will match.
2014-04-06Remove check-fast. Closes #4193, #8844, #6330, #7416Brian Anderson-2/+0
2014-04-04Fix inner attribute syntax from `#[foo];` to `#![foo]`Timothée Ravier-1/+1
From the 0.10 changelog: * The inner attribute syntax has changed from `#[foo];` to `#![foo]`.
2014-03-02Expand string literals and exprs inside of macrosSteven Fackler-0/+35
A couple of syntax extensions manually expanded expressions, but it wasn't done universally, most noticably inside of asm!(). There's also a bit of random cleanup.