Commit 58c27795 authored by Ian Lance Taylor's avatar Ian Lance Taylor

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
parent 5d571cc6
...@@ -7,11 +7,11 @@ ...@@ -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"
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment