Files
a30054014 c1e7498e84 rust-bindgen相关依赖兼容性适配
Signed-off-by: a30054014 <aipeng3@huawei.com>
2025-04-19 16:11:11 +08:00

27 lines
340 B
C

// bindgen-flags: --no-layout-tests
/**
* This is Struct
*/
typedef struct {
/**
* This is field
*/
int field;
} Struct;
/**
* This is AliasToStruct
*/
typedef Struct AliasToStruct;
/**
* This is AliasToInt
*/
typedef int AliasToInt;
/**
* This is AliasToAliasToInt
*/
typedef AliasToInt AliasToAliasToInt;