mirror of
https://github.com/golang/go
synced 2024-11-22 01:44:40 -07:00
Rename function to avoid function redefinition error. Remove
.* from regexp since it confuses DejaGNU which runs gcc's testsuite. R=rsc DELTA=3 (0 added, 0 deleted, 3 changed) OCL=24435 CL=24438
This commit is contained in:
parent
5d571cc67e
commit
58c277955a
@ -7,11 +7,11 @@
|
|||||||
package main
|
package main
|
||||||
|
|
||||||
func out_escapes() (x int, p *int) {
|
func out_escapes() (x int, p *int) {
|
||||||
p = &x; // ERROR "address.*out parameter"
|
p = &x; // ERROR "address of out parameter"
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
func out_escapes() (x int, p *int) {
|
func out_escapes_2() (x int, p *int) {
|
||||||
return 2, &x; // ERROR "address.*out parameter"
|
return 2, &x; // ERROR "address of out parameter"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user