blob: 854d8ee27a9d3787cb8d111f0d5876b9ea17c686 [file] [log] [blame]
// { dg-do compile }
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
struct S { // { dg-error "const|operator=" }
S();
T t;
};
void f()
{
S<const int> s;
s = s; // { dg-message "synthesized|deleted" }
}