// $G $D/$F.go && $L $F.$A && ./$A.out// 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.packagemainfuncmain(){varx,yint;x,y=simple(10,20,30);ifx+y!=65{panic(x+y);}}funcsimple(ia,ib,icint)(oa,obint){returnia+5,ib+ic;}