aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/go.go-torture/execute/map-1.go
blob: 8307c6c98cd43abc5ae5e3142b62d0e6cf46018e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package main

func main() {
  v := make(map[int] int);
  v[0] = 0;
  v[1000000] = 1;
  if v[0] != 0 {
    panic(1)
  }
  val, present := v[0];
  if !present || val != 0 {
    panic(2)
  }
  val = 5;
  val, present = v[1];
  if present || val != 0 {
    panic(3);
  }
  if v[2] != 0 {
    panic(4)
  }
  val, present = v[2];
  if present {
    panic(5)
  }
  if len(v) != 2 {
    panic(6)
  }
  v[0] = 0, false;
  if len(v) != 1 {
    panic(7)
  }

  w := make(map[string] string);
  if len(w) != 0 {
    panic(8)
  }
  w["Hello"] = "world";
  w["Goodbye"] = "sweet prince";
  if w["Hello"] != "world" {
    panic(9)
  }
  if w["Hej"] != "" {
    panic(10)
  }
}