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
/
nullptr26.C
blob
f60fae02ac0b914f0a9bfd5f4f3d671769c367bc
1
// PR c++/51530
2
// { dg-do compile { target c++11 } }
3
4
template <class T, class U>
5
void f(T, U);
6
7
template <class T>
8
void f(T, decltype(nullptr));
9
10
int main()
11
{
12
f(1, nullptr);
13
}