1e01aa904Sopenharmony_ci/* Test a ADT where a struct member is a pointer to
2e01aa904Sopenharmony_ci * itself.
3e01aa904Sopenharmony_ci * gcc -gctf -c test-callback.c -o test-callback.o
4e01aa904Sopenharmony_ci */
5e01aa904Sopenharmony_ci
6e01aa904Sopenharmony_cistruct rb_node_b {
7e01aa904Sopenharmony_ci  struct rb_node_b *this;
8e01aa904Sopenharmony_ci  int a;
9e01aa904Sopenharmony_ci};
10e01aa904Sopenharmony_ci
11e01aa904Sopenharmony_cistruct rb_node_b n1, n2;
12