2019-07-26 16:54:25 -05:00
|
|
|
//@ run-pass
|
2017-03-30 23:08:33 -05:00
|
|
|
//@ aux-build: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);
|
|
|
|
}
|