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++/79143
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp1z
/
class-deduction10.C
blob
8bc4288aa7674baceab01f6dc1d93b90ab043f76
1
// { dg-options -std=c++1z }
2
3
template <class T>
4
struct A
5
{
6
int i;
7
A(...);
8
};
9
10
template <class T>
11
A(T) -> A<T> { } // { dg-error "1:function body" }