1 /** 2 * 3 * Compile with: 4 * gcc -shared -g -Wall -o libtestpr27267-v0.so v0.c 5 * 6 */ 7 8 #include "include-dir-v0/include.h" 9 10 enum opaque_enum 11 { 12 e0, 13 e1 14 }; 15 16 struct opaque_struct 17 { 18 opaque_enum m0; 19 }; 20 21 void fn(opaque_struct * s,opaque_enum * e)22fn(opaque_struct * s, opaque_enum *e) 23 { 24 s->m0 = *e; 25 } 26