blob: fb9659269439770b6efc6cda33843f8af3bf45ce [file] [log] [blame]
Steve Naroffb43eaa52008-02-11 00:06:17 +00001// RUN: clang %s -verify -fsyntax-only
2
3typedef struct _zend_module_entry zend_module_entry;
4struct _zend_module_entry {
5 _efree((p)); // expected-error{{type name requires a specifier or qualifier}} \
Steve Naroffb43eaa52008-02-11 00:06:17 +00006 // expected-error{{field '_efree' declared as a function}}
7};
8typedef struct _zend_function_entry { } zend_function_entry;
9typedef struct _zend_pcre_globals { } zend_pcre_globals;
10zend_pcre_globals pcre_globals;
11
12static void zm_globals_ctor_pcre(zend_pcre_globals *pcre_globals ) { }
13static void zm_globals_dtor_pcre(zend_pcre_globals *pcre_globals ) { }
14static void zm_info_pcre(zend_module_entry *zend_module ) { }
15static int zm_startup_pcre(int type, int module_number ) { }
16
17static int zm_shutdown_pcre(int type, int module_number ) {
Chris Lattner28eb7e92008-11-23 23:17:07 +000018 zend_function_entry pcre_functions[] = {{ }; // expected-error{{expected '}'}} expected-note {{to match this '{'}}
Steve Naroffb43eaa52008-02-11 00:06:17 +000019 zend_module_entry pcre_module_entry = {
20 sizeof(zend_module_entry), 20071006, 0, 0, ((void *)0), ((void *)0),
21 "pcre", pcre_functions, zm_startup_pcre, zm_shutdown_pcre, ((void *)0),
22 ((void *)0), zm_info_pcre, ((void *)0), sizeof(zend_pcre_globals), &pcre_globals,
23 ((void (*)(void* ))(zm_globals_ctor_pcre)), ((void (*)(void* ))(zm_globals_dtor_pcre)),
24 ((void *)0), 0, 0, ((void *)0), 0
25 };
26}