Source file test/fixedbugs/issue31053.dir/f1.go

     1  // Copyright 2019 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package f1
     6  
     7  type Foo struct {
     8  	doneChan chan bool
     9  	Name     string
    10  	fOO      int
    11  	hook     func()
    12  }
    13  
    14  func (f *Foo) Exported() {
    15  }
    16  
    17  func (f *Foo) unexported() {
    18  }
    19  

View as plain text