We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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.
libsyntax/ext/expand.rs