blob: b400988108d28634a21178630c9c06a9931b4e0a [file] [log] [blame]
// PR c++/13907
struct A {
operator int & ();
operator const int & () const;
};
void f(int &);
void f(const int &);
int main() {
const A x = A();
f(x);
}