This commit was manufactured by cvs2svn to create branch
[official-gcc.git] / gcc / testsuite / g++.dg / init / array13.C
blobaa66e33acfc7cf8f9569a10a7517f9fb18cad5aa
1 template <typename DisjointSet> 
2 struct test_disjoint_set { 
3   static void do_test() 
4   { 
5     unsigned int elts[] 
6         = { 0, 1, 2, 3 }; 
7     const int N = sizeof(elts)/sizeof(*elts); 
8   } 
9 };