about summary refs log tree commit diff
path: root/src/test/ui-fulldeps/plugin-args-3.rs
blob: efdbcd0bf0d0a63a406e335cbb0e25483f034554 (plain)
1
2
3
4
5
6
7
8
9
10
// 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\")");
}