2012-02-18 14:15:42 -07:00
|
|
|
// compile
|
2008-07-17 12:04:44 -06:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2012-02-03 12:43:24 -07:00
|
|
|
package bug071
|
2008-07-17 12:04:44 -06:00
|
|
|
|
|
|
|
type rat struct {
|
|
|
|
den int;
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *rat) pr() {
|
|
|
|
}
|
|
|
|
|
|
|
|
type dch struct {
|
2008-12-19 04:05:37 -07:00
|
|
|
dat chan *rat;
|
2008-07-17 12:04:44 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
func dosplit(in *dch){
|
|
|
|
dat := <-in.dat;
|
2009-09-14 22:03:53 -06:00
|
|
|
_ = dat;
|
2008-07-17 12:04:44 -06:00
|
|
|
}
|