Skip to content

Commit e11637a

Browse files
committed
merge tests
1 parent 9281fb2 commit e11637a

File tree

5 files changed

+31
-30
lines changed

5 files changed

+31
-30
lines changed

bindgen-tests/tests/expectations/tests/remove_alias.rs

Lines changed: 13 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bindgen-tests/tests/expectations/tests/remove_template_alias.rs

Lines changed: 0 additions & 8 deletions
This file was deleted.

bindgen-tests/tests/headers/remove_alias.h

Lines changed: 0 additions & 14 deletions
This file was deleted.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
// bindgen-flags: --remove-alias "int.*"
2+
3+
typedef long long int64;
4+
typedef int int32;
5+
typedef int32 i32;
6+
struct int32_ {
7+
int32 inner;
8+
};
9+
typedef int32* int32_ptr;
10+
11+
int64 returns_int64();
12+
int32 returns_int32();
13+
i32 returns_i32();
14+
struct int32_ returns_int32_();
15+
int32_ptr returns_int32_ptr();
16+
17+
template<typename T>
18+
using integer = T;

bindgen-tests/tests/headers/remove_template_alias.hpp

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)