1
0
mirror of https://github.com/golang/go synced 2024-10-03 22:31:21 -06:00
go/test/fixedbugs/bug118.go
Rob Pike 203a17c6ec update tests
R=gri
DELTA=28  (12 added, 14 deleted, 2 changed)
OCL=18923
CL=18923
2008-11-10 14:59:15 -08:00

16 lines
307 B
Go

// $G $D/$F.go || echo BUG should compile
// 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
export func Send(c *chan int) int {
select {
default:
return 1;
}
return 2;
}