aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/method.C
blob: e9496b8286140ad1c7302e771480681c69d82f6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Bug: pointer to pointer is treated as plain pointer.
// PRMS Id: 1767
// Build don't link:

class Foo {
public:
	void method();
};

void func(Foo ** ppFoo) {
	ppFoo->method();	// ERROR - 
}