4495766362
From-SVN: r23760
8 lines
99 B
C
8 lines
99 B
C
void f(const int &) { }
|
|
void f(const float &);
|
|
|
|
int main()
|
|
{
|
|
f(false); // gets bogus error
|
|
}
|