]> git.proxmox.com Git - rustc.git/blame - src/test/ui-fulldeps/plugin-args-3.rs
New upstream version 1.40.0+dfsg1
[rustc.git] / src / test / ui-fulldeps / plugin-args-3.rs
CommitLineData
416331ca 1// run-pass
532ac7d7 2// aux-build:plugin-args.rs
1a4d82fc 3// ignore-stage1
223e47cc 4
1a4d82fc 5#![feature(plugin)]
85aaf69f 6#![plugin(plugin_args(hello(there), how(are="you")))]
223e47cc
LB
7
8fn main() {
85aaf69f 9 assert_eq!(plugin_args!(), "hello(there), how(are = \"you\")");
223e47cc 10}