aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/conversion/ambig1.C
blob: 1db1667073fe933c72f4ff313dbd586b305daf6d (plain)
1
2
3
4
5
6
7
8
// PR c++/19787

struct H {
  operator char(); // { dg-message "note" }
  operator short(); // { dg-message "note" }
};

int const& ref = H(); // { dg-error "ambiguous" }