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 functions.
8
9package main
10
11func
12main() {
13	var x int;
14
15	x = fun(10,20,30);
16	if x != 60 { panic(x); }
17}
18
19func
20fun(ia,ib,ic int)int {
21	var o int;
22
23	o = ia+ib+ic;
24	if o != 60 { panic(o); }
25	return o;
26}
27