mirror of
https://github.com/golang/go
synced 2024-11-05 18:36:10 -07:00
0304a48595
R=golang-dev CC=golang-dev https://golang.org/cl/6849129
19 lines
319 B
Go
19 lines
319 B
Go
// compile
|
|
|
|
// Copyright 2012 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.
|
|
|
|
// Caused an internal compiler error in gccgo.
|
|
|
|
package p
|
|
|
|
type C chan struct{}
|
|
|
|
func (c C) F() {
|
|
select {
|
|
case c <- struct{}{}:
|
|
default:
|
|
}
|
|
}
|