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
simulate-thread tests: Silence gdb debuginfod warning
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
pr90598.C
blob
0ee3fb189a6fe2533b325df286ee5c7c512cb05c
1
// PR c++/90598
2
// { dg-do compile { target c++11 } }
3
4
struct A {};
5
using B = decltype(A ().~A ());
6
template <typename T> struct C;
7
template <> struct C<void> {};
8
C<B> t;