refcount_15.rs revision d5a84f6d49d64738e4bb7c9dea7242e48acad959
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