about summary refs log tree commit diff
path: root/src/test/run-pass/log-poly.rs
AgeCommit message (Collapse)AuthorLines
2013-03-27testsuite: more `pub fn main`Tim Chevalier-1/+11
2013-03-07Make debug!, etc. macros not require a format stringBrian Anderson-0/+10
The one thing `log` can still do is polymorphically log anything, but debug!, etc. require a format string. With this patch you can equivalently write `debug!(foo)` or `debug!("%?", foo)`