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 5package f1 6 7type Foo struct { 8 doneChan chan bool 9 Name string 10 fOO int 11 hook func() 12} 13 14func (f *Foo) Exported() { 15} 16 17func (f *Foo) unexported() { 18} 19