]> gcc.gnu.org Git - gcc.git/blob - gcc/testsuite/g++.dg/opt/empty1.C
re PR c++/43787 (memory copy of empty class (sizeof is one))
[gcc.git] / gcc / testsuite / g++.dg / opt / empty1.C
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 }
This page took 0.0362440000000001 seconds and 5 git commands to generate.