summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/refs3.C
blob: 7b9a85bac398d16307b56295a37e9044541a7bec (plain)
1
2
3
4
5
6
// { dg-do assemble  }
// GROUPS passed references
const int& min(const int& n, const int& m)
{
        return n < m ? n : m;
}