Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.mike / p701.C
blob99ef1f4d6c85459f79d9c6512444532898501823
1 // { dg-do assemble  }
2 // prms-id: 701
4 extern "C" 
6   int printf(const char *, ...);
10 void Munge(int& x)      // { dg-message "argument 1" }
12    x = 2;
16 class A 
18  public:
19    int i;
20    A(int x) : i(x) {}
21    void Safe() const;
24 void
25 A::Safe() const 
27    Munge(i);            // { dg-error "const" }
30 int main()
32    const A a(1);
33    a.Safe();