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 tree-optimization/86415 - strlen() not folded for substrings within constant arrays
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
class-deduction5.C
blob
a7d56fbf93dd3e61d96e297bb536af08e43d86d4
1
// { dg-options -std=c++17 }
2
3
template <class T>
4
struct A
5
{
6
int i;
7
};
8
9
A<int> a1;
10
A a(a1);