]> git.lizzy.rs Git - rust.git/blob - src/test/ui-fulldeps/plugin-args-3.rs
async/await: improve obligation errors
[rust.git] / src / test / ui-fulldeps / plugin-args-3.rs
1 // run-pass
2 // aux-build:plugin-args.rs
3 // ignore-stage1
4
5 #![feature(plugin)]
6 #![plugin(plugin_args(hello(there), how(are="you")))]
7
8 fn main() {
9     assert_eq!(plugin_args!(), "hello(there), how(are = \"you\")");
10 }