blob: fdc8aabef4c83e4c060710fc57406bc425b0c27a [file] [log] [blame]
// { dg-do run { target native } }
// { dg-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);
}