summary refs log tree commit diff
path: root/src/test/run-pass-fulldeps/plugin-args-3.rs
blob: 4696233f2818e38e8fd674e9956d1692f97fea64 (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\")");
}