summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/tc1/dr76.C
blob: 0859b0c730eacf23127708d915d7194f82af6f02 (plain)
1
2
3
4
5
6
7
8
// { dg-do compile }
// Origin: Giovanni Bajo <giovannibajo at gcc dot gnu dot org>
// DR76: Are const volatile variables considered "constant expressions"? 

volatile const int a = 5;

template <int> struct K;
template struct K<a>;	// { dg-error "" }