1// bindgen-flags: -- --target=i686-pc-win32
2
3extern "C" void foo();
4
5struct Foo {
6  static bool sBar;
7};
8
9// Also test some x86 Windows specific calling conventions that have their own
10// special mangling
11extern "C" {
12    int _fastcall fast_call_func_no_args();
13    // This will result in a suffix with more than one character (i.e. `@12`)
14    int _fastcall fast_call_func_many_args(int,int,int);
15    int _stdcall std_call_func_no_args();
16    // This will result in a suffix with more than one character (i.e. `@12`)
17    int _stdcall std_call_func_many_args(int,int,int);
18}
19