aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.jason/lineno3.C
blob: f2688635437b9f8c7c096a1cee9c7666fd76e309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// Build don't link: 
// Special g++ Options: 
// GROUPS passed error-reporting
// potential bug: # line directive does not get reproduced in template
// expansion
template <class T> class A
{
public:
# 200 "lineno3.C"
      int foo () { undef1(); } // ERROR - , LINE 200
};

template class A<int>;