aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/parse/pr20118.C
blob: 94e000a6f6886f2e23078d923a31f06107e6f8fa (plain)
1
2
3
4
5
6
7
8
9
// { dg-do compile }
// { dg-options "-fshow-column" } 
template<typename t>struct foo {
  static const int i; };

const int foo<bool>::i = 5; // { dg-error "11:specializing member .foo<bool>::i. requires .template<>. syntax" }

int main() { return 0; }