| 3 | using namespace std; |
| 4 | |
| 5 | int main() |
| 6 | { |
| 7 | int ia[] = {0,1,2,3}; |
| 8 | int *beg = begin(ia); |
| 9 | int *last = end(ia); |
| 10 | cout << *beg << endl; |
| 11 | cout << *(last-1) << endl; |
| 12 | return 0; |
| 13 | } |
nothing calls this directly
no outgoing calls
no test coverage detected