blob: 966ab616cdf0c9f1464bafe315940a431f30e5b4 [file] [log] [blame]
// run-pass
// aux-build:count_compound_ops.rs
#![feature(proc_macro_hygiene)]
extern crate count_compound_ops;
use count_compound_ops::count_compound_ops;
fn main() {
assert_eq!(count_compound_ops!(foo<=>bar <<<! -baz ++), 4);
}