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
Merged revisions 208012,208018-208019,208021,208023-208030,208033,208037,208040-20804...
[official-gcc.git]
/
main
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nullptr27.C
blob
2510dc80634072b9bb2a4166055110ff738830ed
1
// PR c++/52706
2
// { dg-do compile { target c++11 } }
3
// { dg-options "-fabi-version=0" }
4
// { dg-final { scan-assembler "_Z1fIDnLDn0EEiT_" } }
5
6
template<class T, decltype(nullptr) = nullptr>
7
int f(T);
8
9
int i2 = f(nullptr); // 17