aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/refs3.C
blob: e77dd7fad493e93c06a1067325f72eb38da8639b (plain)
1
2
3
4
5
6
// Build don't link: 
// GROUPS passed references
const int& min(const int& n, const int& m)
{
        return n < m ? n : m;
}