repo.or.cz
/
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: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
auto32.C
blob
2aad34e40ac8e2db9fc13d756dcf6f6be3b65c6c
1
// { dg-do compile { target c++11 } }
2
3
// { dg-final { scan-assembler "_Z1fIiEDTnw_Dapifp_EET_" } }
4
template <class T> auto f(T t) -> decltype (new auto(t));
5
6
int main()
7
{
8
f(1);
9
}