#include "async.h"

typedef struct {
  int r;
  int t;
  int m;
} rtm;

int
main(int argc, char *argv[])
{
  async_init();
  rtm *foo = New rtm();
  foo->r = 1;
  foo->t = 2;
  foo->m = 3;

  delete foo;
}
