blob: e9496b8286140ad1c7302e771480681c69d82f6d [file] [log] [blame]
// 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 -
}