| 1 | int pow_2(int a) { |
| 2 | int res = 1; |
| 3 | for (int i = 0; i < 2; ++i) { |
| 4 | res *= a; |
| 5 | } |
| 6 | return res; |
| 7 | } |
| 8 | |
| 9 | [[circuit]] int int_arithmetic_example(int a, int b) { |
| 10 | int c = (a + b) * a + b * (a + b) * (a + b); |
no outgoing calls
no test coverage detected