blob: 2547c3c1a2d55ab4099ba32e07bbb4911746da66 [file] [log] [blame]
// 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;