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
Update concepts branch to revision 131834
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
crash29.C
blob
55953ed80100d559c5ff6f870f71313dc8e548cd
1
// PR c++/18512
2
3
template <int> struct A {};
4
5
struct B : A<0>
6
{
7
void foo() { this->A<0>; } // { dg-error "" }
8
};