summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/dot.C
blob: 41b8d814f4ce4d0e25559a9d81050c66ba6db0a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// { dg-do assemble  }
// PRMS Id: 4143
// Bug: Pointer is silently dereferenced in method call.

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

class Test
{
    char ch;
  public:
    Test(char c) : ch(c) {}
    void Print() { printf("%c", ch); }
};

int main()
{
    Test *p = new Test('x');

    p.Print();	// { dg-error "" } 
}