blob: acfd681ec92a06f1cad400464829a7f2ead84515 [file] [log] [blame]
// Build don't link:
template <class T>
struct vector {};
template<class T>
void fn(T)
{
enum tern { H, L, X, U };
vector<tern> ternvec; // ERROR - composed from a local type
}
template void fn(int);