Sign in
llvm
/
llvm-project
/
llgo
/
97d4c42914154dcfe4d5ff76d0592d836e77f73a
/
.
/
test
/
execution
/
circulartype.go
blob: 01e9ce44493ee5b3cabc63a382f0dbcff69608e3 [
file
] [
log
] [
blame
]
// RUN: llgo -o %t %s
// RUN: %t 2>&1 | count 0
package main
type A struct {
b1, b2 B
}
type B struct {
a1, a2 *A
}
func main() {
var a A
_ = a
}