doc: Remove i?86-*-linux* installation note from 2003
[official-gcc.git] / gcc / testsuite / g++.dg / abi / empty27.C
blob5d14e7c6a03226428abdc11c55511eaea073fda4
1 // PR c++/60336
2 // { dg-do compile }
3 // { dg-options "-Wabi=12" }
5 struct foo
7   int i1;
8   int i2;
9   int i3;
10   int i4;
11   int i5;
14 namespace N {
15   class E { };
16   void fun (class E, struct foo);
19 int main()
21   N::E d;
22   struct foo f = { -1, -2, -3, -4, -5 };
24   N::fun(d, f); // { dg-bogus "empty" }
25   return 0;