aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/overload12.C
blob: dc336c5caed317317efad39110dbb7d7c2c6aa5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// PRMS Id: 4066
// Bug: g++ doesn't notice the const on reference returns.

struct B {
  int foo() { return 1; }
  int foo() const { return 0; }
};

B b_;
const B &b () { return b_; }

main()
{
  return b().foo();
}