aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/p701.C
blob: 4acf17038d460d5a4f30ab82a05deb0404abc025 (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
}

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