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
fortran: dynamically allocate error_buffer [PR117442]
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
var-templ27.C
blob
da06b0123a9e3c56728d2068d1bfbbafc4f86161
1
// { dg-do compile { target c++14 } }
2
3
namespace A
4
{
5
template <class T> int I = 0;
6
template <class T> int I<T*> = 42;
7
}
8
9
int i = A::I<void*>;