| 24 | }; |
| 25 | |
| 26 | int main() |
| 27 | { |
| 28 | CXXFoldExprTest cxxFoldExprTest{}; |
| 29 | |
| 30 | cxxFoldExprTest.UnaryRightFold(2,3,4,5); |
| 31 | cxxFoldExprTest.UnaryLeftFold(2,3,4,5); |
| 32 | cxxFoldExprTest.BinaryRightFold(2,3,4,5); |
| 33 | cxxFoldExprTest.BinaryLeftFold(2,3,4,5); |
| 34 | } |
| 35 |
nothing calls this directly
no test coverage detected