Sign in
go
/
gofrontend
/
267686fd1dffbc03e610e9f17dadb4e72c75f18d
/
.
/
libgo
/
go
/
debug
/
dwarf
/
testdata
/
cycle.c
blob: a0b53dfe74733d8400fb10b70357649c8201ba04 [
file
]
typedef
struct
aaa
*
AAA
;
typedef
AAA BBB
;
struct
aaa
{
BBB val
;
};
AAA x
(
void
)
{
return
(
AAA
)
0
;
}