blob: efdbcd0bf0d0a63a406e335cbb0e25483f034554 [file] [log] [blame]
// run-pass
// 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\")");
}