blob: 3dfa728f18efde19a29df5832356595f5e5633ed [file] [log] [blame]
// { dg-do compile }
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S { // { dg-error "const member\[^\n\r\]*cannot use default assignment operator" }
S();
T t;
};
void f()
{
S<const int> s;
s = s; // { dg-message "synthesized|deleted" }
}