blob: a69954356eafc6a40ced6ad3076b3fe85c5c2441 [file] [log] [blame]
/* APPLE LOCAL file radar 5803005 */
/* Test that all globals are 'byref' as default. */
/* { dg-options "-mmacosx-version-min=10.5" { target *-*-darwin* } } */
/* { dg-do compile } */
int a;
static s;
extern int i;
void foo() {
extern int b;
static int c;
^ { a = 1; // byref OK
b = 2; // byref OK
s = 5; // byref OK
i = 12; // byref OK
c = 3;
};
}