1// { dg-do run  }
2void f(const int &) { }
3void f(const float &);
4
5int main()
6{
7    f(false);			// { dg-bogus "" }
8}
9