aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/overload27.C
blob: 123018dd1b5cd5ae7ed0f6fe571e675d43bee51c (plain)
1
2
3
4
5
6
7
void f(const int &) { }
void f(const float &);

int main()
{
    f(false);			// gets bogus error
}