blob: e58c36e047db64d9bf3e57920347ce7c869f2cab (
plain)
1
2
3
4
5
6
7
8
9
|
//@ run-pass
//@ 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);
}
|