11556Srgrimes// { dg-do assemble  }
21556Srgrimes// Bug: pointer to pointer is treated as plain pointer.
31556Srgrimes// PRMS Id: 1767
41556Srgrimes
51556Srgrimesclass Foo {
61556Srgrimespublic:
71556Srgrimes	void method();
81556Srgrimes};
91556Srgrimes
101556Srgrimesvoid func(Foo ** ppFoo) {
111556Srgrimes	ppFoo->method();	// { dg-error "" }
121556Srgrimes}
131556Srgrimes