summary refs log tree commit diff
path: root/src/test/run-pass-fulldeps/plugin-args-1.rs
blob: 0111af1c76804eba5efc03bec5923a50c7b775b1 (plain)
1
2
3
4
5
6
7
8
9
// aux-build:plugin_args.rs
// ignore-stage1

#![feature(plugin)]
#![plugin(plugin_args)]

fn main() {
    assert_eq!(plugin_args!(), "");
}