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
PR c++/56973, DR 696 - capture constant variables only as needed.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1y
/
var-templ7.C
blob
07453af796c86c83f1161e854ed7733231a028c7
1
// { dg-do compile { target c++14 } }
2
3
template <class T> T var = 0;
4
5
int main()
6
{
7
var<int> = 42;
8
}