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++/85553
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
nullptr38.C
blob
82d75ed28163a3bc7690c743b22fe219aba0d35c
1
// { dg-do compile { target c++11 } }
2
3
using nullptr_t = decltype(nullptr);
4
5
constexpr nullptr_t n = nullptr;
6
7
template <void *> struct A { };
8
9
A<n> a;