aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p701.C
blob: c222ea1e8887800fb69f11e440980cdf59fac2d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Build don't link:
// prms-id: 701

extern "C" 
{
  int printf(const char *, ...);
};


void Munge(int& x) 
{				// ERROR - referenced below
   x = 2;
}


class A 
{
 public:
   int i;
   A(int x) : i(x) {}
   void Safe() const;
};

void
A::Safe() const 
{
   Munge(i);	// ERROR - should not be able to modify a const object
}

int main()
{
   const A a(1);
   a.Safe();
}