1 // Copyright 2020, 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 foo is deliberately named differently than the parent directory. 6 // It contain declarations that have ambiguity in their short names, 7 // relative to a different package also called foo. 8 package foo 9 10 type Bar struct{ S string } 11