* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / union1.C
blob37424a1f4e464892bb04ba4a97ac804a756e7a02
1 // { dg-do assemble  }
3 class A
5   private:
6     int myInt;
8   public:
9     A& operator = (int right) {myInt = right; return *this;}
12 union B
14     char f1;
15     A    f2;   // { dg-bogus "" } non-copy assignment op is OK