Home | History | Annotate | Download | only in F_refcount_15
      1 // -target-api 15
      2 #pragma version(1)
      3 #pragma rs java_package_name(foo)
      4 
      5 rs_allocation aFail[2];
      6 
      7 struct rsStruct {
      8     rs_allocation a;
      9 } sFail;
     10 
     11 static rs_allocation aOk[2];
     12 
     13 static struct noExport {
     14     rs_allocation a;
     15 } sOk;
     16 
     17 struct onlyPtr {
     18     rs_allocation a;
     19 } *ptrOk;
     20 
     21