aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.pt/bad-type.C
blob: 6b22b86a30f4a2129fd437919899c9f94c326653 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
template<class Type>
class A
{
public:
  Type m;
};

template<class Type>
void f(A<Type>& a, Type d)
{
  A.m=d; // ERROR - invalid use of template
}

int main()
{
  A<int> a;
  f(a,2);
}