2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
2017-03-31 04:08:33 +00: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);
|
|
|
|
}
|