OSDN Git Service

* class.c (resolve_address_of_overloaded_function): Don't
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.other / empty2.C
1 // { dg-do assemble  }
2 // Origin: Mark Mitchell <mark@codesourcery.com>
3
4 struct E {};
5
6 void f () {
7   E e1, e2;
8   e1 = e2; // We should not warn about this statement, even though no
9            // code is generated for it.
10 }