blob: e5cc58a4a2d4248a544ed4254c9239a38ba1fe70 [file] [log] [blame]
// Build don't link:
template <int I>
void f();
template <>
void f<4>() {}
template <class T>
struct S
{
enum E { a = 1, b = a + 3 };
};
int main()
{
f<S<int>::b>();
}