1// run
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Test simple multi-argument multi-valued function.
8
9package main
10
11func
12main() {
13	var x,y int;
14
15	x,y = simple(10,20,30);
16	if x+y != 65 { panic(x+y); }
17}
18
19func
20simple(ia,ib,ic int) (oa,ob int) {
21	return ia+5, ib+ic;
22}
23