aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/dot.C
blob: 3870eead449e2f5ba570af400488b0b7981960f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// PRMS Id: 4143
// Bug: Pointer is silently dereferenced in method call.
// Build don't link:

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();	// ERROR - 
}