Skip to content
Snippets Groups Projects
array_cast_bts1099.i 142 B
/* run.config*
 EXIT: 1
   STDOPT:
*/

typedef int t[10];
typedef int u[4];

void main () {
  int tab1[4];
  u* p = &tab1;
  t* p2 = (t) p;
}