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++/81917 - ICE with void_t and partial specialization.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
opt
/
dtor4.h
blob
d3b43beabd7f24969276ed190557a48d6a490472
1
#include <cassert>
2
3
struct
S
4
{
5
int
a
,
i
;
6
S
() :
i
(
1
) {}
7
__attribute__
((
noinline
)) ~
S
() {
assert
(
i
==
1
); }
8
};