summary refs log tree commit diff
path: root/src/test/run-pass-fulldeps/plugin-args-2.rs
blob: 83091df058283bec6b631fece03410b988b11225 (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!(), "");
}