blob: 9cd9bee5a0fe9eec74f12bc299715015eac7937d (
plain)
1
2
3
4
5
6
7
8
9
|
// aux-build:plugin-args.rs
// ignore-stage1
#![feature(plugin)]
#![plugin(plugin_args(hello(there), how(are="you")))]
fn main() {
assert_eq!(plugin_args!(), "hello(there), how(are = \"you\")");
}
|