]> Cypherpunks repositories - gostls13.git/commitdiff
Rename function to avoid function redefinition error. Remove
authorIan Lance Taylor <iant@golang.org>
Thu, 5 Feb 2009 20:54:15 +0000 (12:54 -0800)
committerIan Lance Taylor <iant@golang.org>
Thu, 5 Feb 2009 20:54:15 +0000 (12:54 -0800)
.* 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

test/escape1.go

index 28b5b1016e69be13e89dd6462c0be587adc13388..646e4b351959e63cc3af513a0febfe901ae5c2a9 100644 (file)
@@ -7,11 +7,11 @@
 package main
 
 func out_escapes() (x int, p *int) {
-       p = &x; // ERROR "address.*out parameter"
+       p = &x; // ERROR "address of out parameter"
        return;
 }
 
-func out_escapes() (x int, p *int) {
-       return 2, &x;   // ERROR "address.*out parameter"
+func out_escapes_2() (x int, p *int) {
+       return 2, &x;   // ERROR "address of out parameter"
 }