blob: 1b64a65095aebe30311ede7ade4b81db2b9cb752 [file] [log] [blame]
// { dg-do assemble }
template <class T>
class S
{
protected:
template <class U>
void f(U); // { dg-error "" } is protected
private:
template <class U>
void g(U); // { dg-error "" } is private
};
void f()
{
S<double> s;
s.f(3); // { dg-error "" } within this context
s.g(2.0); // { dg-error "" } within this context
}