// { dg-do assemble } // regression test - // by Paul Burchard , Level Set Systems, Inc. // Copyright (C) 1999 Free Software Foundation // related to bug report by Leon Bottou struct A { template struct B { }; template struct C { B b; // { dg-bogus "" } B is not a template // but removing wrapper A gets rid of complaint // also, replacing B with A::B also gets rid of complaint }; };