blob: 254b48bc7fc5dea3055929db7c154222efe458a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// { dg-do assemble }
template <class T>
struct vector {};
template<class T>
void fn(T)
{
enum tern { H, L, X, U };
vector<tern> ternvec; // { dg-error "" } composed from a local type
}
template void fn(int);
|