repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash99.C
blob
606d3e3049b2e034334066ceb0932104881c5dc0
1
// PR c++/34491
2
3
template<typename> struct A;
4
5
template<0> struct A<int> // { dg-error "expected|template|anonymous" }
6
{
7
static const int i = 0;
8
};
9
10
int n = A<int>::i; // { dg-error "incomplete type" }