incomplete1.C revision 1.1.1.1
1// PR 10202
2// { dg-do compile }
3// { dg-options -O0 }
4
5extern struct _smtp_account smtp_accounts[];
6typedef struct _smtp_account {
7        int flags;
8} Smtp_Account;
9
10void get_smtp_host_info ()
11{
12	if (smtp_accounts[0].flags & 0x01)
13		get_smtp_host_info();
14}
15