Closed

Description
It would be nice to be able to write
condition! {
foo: int -> ~str;
bar: char -> bool;
}
instead of
condition! { foo: int -> ~str; }
condition! { bar: char -> bool; }
for modules that define a number of conditions.
This should only require a small change to libsyntax/ext/expand.rs
once macros are capable of expanding to multiple items, per #4021 and #3086.