aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/template/arg1.C
blob: f7a8b3150c69dc5f7aaf67865ec1c44027484983 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 21 Mar 2003 <nathan@codesourcery.com>

// PR 9978. We rejected a constant expression.
  
enum { val = 1 };

template <class T>
struct Bar
{
  static const int A = val;
  static const int B = A + 1;
};