blob: 21ee872027973f5a3732cf95c55d388d8c4e82cc [file] [log] [blame]
Eli Friedmanc1494122009-06-11 01:11:20 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3template<int i> struct x {
4 static const int j = i;
5 x<j>* y;
6};
7