mirror of
https://github.com/golang/go.git
synced 2025-05-07 16:43:03 +00:00
.* 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
18 lines
384 B
Go
18 lines
384 B
Go
// errchk $G $D/$F.go
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package main
|
|
|
|
func out_escapes() (x int, p *int) {
|
|
p = &x; // ERROR "address of out parameter"
|
|
return;
|
|
}
|
|
|
|
func out_escapes_2() (x int, p *int) {
|
|
return 2, &x; // ERROR "address of out parameter"
|
|
}
|
|
|