Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / conversion / op2.C
blobb400988108d28634a21178630c9c06a9931b4e0a
1 // PR c++/13907
3 struct A {
4   operator int & ();
5   operator const int & () const;
6 };
7                                                                                
8           
9 void f(int &);
10 void f(const int &);
11                                                                                
12           
13 int main() {
14   const A x = A();
15   f(x);