blob: 0f42cf4afa7a126f462f0a695645bb140febaa58 [file] [log] [blame]
// Skip if not native
// Special g++ Options: -fprofile-arcs -ftest-coverage
void
test_swap(int& x, int& y) throw()
{
int tmp = x;
x = y;
y = tmp;
}
main()
{
int i = 5;
int j = 7;
test_swap(i, j);
}