1// bindgen-flags: --allowlist-type Baz
2
3struct Bar {
4  const int m_baz;
5  Bar(int baz);
6};
7
8class Baz {
9  static const Bar FOO[];
10};
11