Skip to content
Snippets Groups Projects
Select Git revision
  • 1f1c1563324284b9ca4249d931023e0df6c4f077
  • master default
  • labcomm2014
  • labcomm2006
  • python_sig_hash
  • typedefs
  • anders.blomdell
  • typeref
  • pragma
  • compiler-refactoring
  • labcomm2013
  • v2014.6
  • v2015.0
  • v2014.5
  • v2014.4
  • v2006.0
  • v2014.3
  • v2014.2
  • v2014.1
  • v2014.0
  • v2013.0
21 results

test_labcomm_renaming_decoder.c

Blame
  • nested.lc 784 B
    sample int s_array_array_array[1][1, 1][1, 1, 1];
    sample struct { 
      int b[1][1, 1]; 
      int c[1][_, 1, _][_,_]; 
    } struct_array_ss[1];
    typedef int int_t;
    typedef int int_array_t[1][2][3,4];
    typedef struct { int a; } struct_t;
    typedef struct { int a; } struct_array_t[2];
    typedef struct { struct { int a; } a; } struct_struct_t;
    
    sample int int_s;
    sample int int_array_s[1][_, 3, _][5];
    sample struct { int a; double bcd; } struct_s;
    sample struct { int a; } struct_array_s[2];
    sample struct { struct { int a; } a; } struct_struct_s;
    
    sample int_t int_t_s;
    sample int_array_t int_array_t_s;
    sample struct_t struct_t_s;
    sample struct_array_t struct_array_t_s;
    sample struct_struct_t struct_struct_t_s;
    
    sample string string_array[_];
    sample struct { string s[_]; } string_struct_array;