// @Test
// public void hello() {}
@Test public void alignPointer() throws Throwable {
PointerStruct s = new PointerStruct();
final int SIZE = runtime.addressSize() == 4 ? 8 : 16;
assertEquals("Incorrect pointer field alignment", SIZE, Struct.size(s));
}