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
/
empty1.C
blob
66784fb28bfa95f422adc7f5fcb19fa9041edb63
1
// PR c++/43787
2
// Test that we don't try to copy *x.
3
// { dg-do run }
4
5
class empty_t {};
6
7
int main()
8
{
9
empty_t* x = 0;
10
empty_t y = *x;
11
}