]> Git Repo - binutils.git/blob - gdb/testsuite/gdb.go/types.go
Automatic date update in version.in
[binutils.git] / gdb / testsuite / gdb.go / types.go
1 package main
2
3 import "fmt"
4
5 // Self-referential type.
6 type T *T
7
8 // Mutually recursive types.
9 type T1 *T2
10 type T2 *T1
11
12 // Mutually recursive struct types.
13 type S1 struct { p_s2 *S2 }
14 type S2 struct { p_s1 *S1 }
15
16 func main () {
17   fmt.Println ("Shall we?")
18   var t T
19   fmt.Println (t)
20   var s1 S1
21   var s2 S2
22   fmt.Println (s1)
23   fmt.Println (s2)
24 }
This page took 0.034466 seconds and 4 git commands to generate.