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