Sign in
go
/
gofrontend
/
6aa463fef2d8f04e0bd2675f63a6529df080a44a
/
.
/
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
;
}