Lines Matching full:does

13 	defer f(new(int))           // ERROR "... argument does not escape$" "new\(int\) does not escape$"
14 defer f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
17 defer f([]*int{}...) // ERROR "\[\]\*int{} does not escape$"
18 …defer f([]*int{new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does
19 …defer f([]*int{new(int), new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does
22 go f(new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
23 go f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
26 go f([]*int{}...) // ERROR "\[\]\*int{} does not escape$"
27 …go f([]*int{new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does no…
28 …go f([]*int{new(int), new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does no…
32 defer f(new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
33 defer f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
36 defer f([]*int{}...) // ERROR "\[\]\*int{} does not escape$"
37 … f([]*int{new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does not …
38 … f([]*int{new(int), new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does not …
41 go f(new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
42 go f(new(int), new(int)) // ERROR "... argument does not escape$" "new\(int\) does not escape$"
45 go f([]*int{}...) // ERROR "\[\]\*int{} does not escape$"
46 …go f([]*int{new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does no…
47 …go f([]*int{new(int), new(int)}...) // ERROR "\[\]\*int{...} does not escape$" "new\(int\) does no…