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