summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/regress/value-dep1.C
blob: 112389d4a8ed8aadf596ae436c4ef9076f187673 (plain)
1
2
3
4
5
6
7
// PR c++/48265
// { dg-options -std=c++0x }

template < int > struct S
{
  S () { const int i = i; i; };
};