Source file test/fixedbugs/issue32778.dir/b.go

     1  // Copyright 2019 The Go Authors. All rights reserved. Use of this
     2  // source code is governed by a BSD-style license that can be found in
     3  // the LICENSE file.
     4  
     5  package b
     6  
     7  import "./a"
     8  
     9  func Expo(fn a.FullName) a.Name {
    10  	return fn.Name()
    11  }
    12  

View as plain text