summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/overload8.C
blob: 2987ae51ada323e9c78aed96fd1123e4e5aaab4f (plain)
1
2
3
4
5
6
7
// { dg-do assemble  }
// Bug: g++ fails to catch the ambiguity below.

struct A {
  operator int () { return 1; }
  operator int &() { return 1; } // { dg-error "" } 
};