]> git.lizzy.rs Git - rust.git/blob - tests/ui/proc-macro/count_compound_ops.rs
Rollup merge of #107470 - kadiwa4:bootstrap_cleanup, r=albertlarsan68
[rust.git] / tests / ui / proc-macro / count_compound_ops.rs
1 // run-pass
2 // aux-build:count_compound_ops.rs
3
4 extern crate count_compound_ops;
5 use count_compound_ops::count_compound_ops;
6
7 fn main() {
8     assert_eq!(count_compound_ops!(foo<=>bar <<<! -baz ++), 4);
9 }