about summary refs log tree commit diff
path: root/tests/ui/proc-macro/count_compound_ops.rs
blob: 20b0b87817e2ffec54786aea1d172efaeeb8046f (plain)
1
2
3
4
5
6
7
8
9
//@ run-pass
//@ proc-macro: count_compound_ops.rs

extern crate count_compound_ops;
use count_compound_ops::count_compound_ops;

fn main() {
    assert_eq!(count_compound_ops!(foo<=>bar <<<! -baz ++), 4);
}