blob: d8b3bea9a60874cbc3f4a9ea51e07de382031f89 [file] [log] [blame]
Rémy Oudompheng2ece2f52012-02-18 22:15:42 +01001// compile
Rob Pike3a613be2008-07-03 16:48:59 -07002
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
7package main
8
9func
10swap(x, y int) (u, v int) {
11 return y, x
12}
13
14func
Robert Griesemer60d4e302009-12-10 11:25:54 -080015main() {
Rob Pike3a613be2008-07-03 16:48:59 -070016 a := 1;
17 b := 2;
18 a, b = swap(swap(a, b));
19 if a != 2 || b != 1 {
Rob Pikebc2f5f12008-08-11 22:07:49 -070020 panic("bad swap");
Rob Pike3a613be2008-07-03 16:48:59 -070021 }
22}