2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / arg1.C
blobf7a8b3150c69dc5f7aaf67865ec1c44027484983
1 // { dg-do compile }
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 21 Mar 2003 <nathan@codesourcery.com>
6 // PR 9978. We rejected a constant expression.
7   
8 enum { val = 1 };
10 template <class T>
11 struct Bar
13   static const int A = val;
14   static const int B = A + 1;