aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.law/global-init1.C
blob: ce641254e6278caf8e48b60633c2d6ee100908cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// GROUPS passed initialization
// global-init file
// Message-Id: <9212021756.AA12639@grumpy.pocs.com>
// From: wp@pocs.com (Wolfgang Polak)
// Subject: Initializers - gcc 2.2.2 (g++), Sparc, SunOS 4.1.1
// Date: Wed, 2 Dec 92 09:56:01 PST

#include <stdio.h>
struct S { int  a; int  c; };
int i = 3;
S s = {6, i};
S * the_s  () { return &s; };
main ()
{
  S * cls = the_s ();
  if (cls->a != 6)
    printf ("FAIL\n");
  else
    printf ("PASS\n");
}