1// { dg-do assemble  }
2// { dg-options "" }
3// GROUPS passed error-reporting
4// Bug: # line directive in template definition interferes with growing obstack
5template <class T> class A
6{
7public:
8
9# 200 "lineno4.C"
10      int foo () { undef1(); } // { dg-error "" "" { target *-*-* } 200 }
11};
12
13template class A<int>;
14