OSDN Git Service

PR c++/53549
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / param3.C
1 // PR c++/49418
2
3 template <class T>
4 void f (const T t)
5 {
6   t = 1;                        // { dg-error "" }
7 }
8
9 int main()
10 {
11   f(1);
12 }