1// compile
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
7package bug071
8
9type rat struct  {
10	den  int;
11}
12
13func (u *rat) pr() {
14}
15
16type dch struct {
17	dat chan  *rat;
18}
19
20func dosplit(in *dch){
21	dat := <-in.dat;
22	_ = dat;
23}
24