summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/expected/cpp/34179-arith_vs_byref.cpp
blob: f459fdccca3d4c208f9980e1058bad9743c9fe42 (plain)
1
2
3
4
5
6
7
8
9
10
A a = {this->r & cos(b)};

B b1 = {0x0000'1111 & this->r};
B b2 = {this->r & 0x0000'1111};
B b3 = {0x0000'1111 & value};
B b4 = {value & 0x0000'1111};

auto p = std::make_pair(r & cos(a), r & sin(a));

auto p2 = std::make_pair(r & 0x0000'1111, 0x0000'1111 & r);