summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/assign1.C
blob: 854d8ee27a9d3787cb8d111f0d5876b9ea17c686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { 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" }
}