1*88d15eacSSasha Smundak// Copyright 2020, The Go Authors. All rights reserved. 2*88d15eacSSasha Smundak// Use of this source code is governed by a BSD-style 3*88d15eacSSasha Smundak// license that can be found in the LICENSE file. 4*88d15eacSSasha Smundak 5*88d15eacSSasha Smundak// Package foo is deliberately named differently than the parent directory. 6*88d15eacSSasha Smundak// It contain declarations that have ambiguity in their short names, 7*88d15eacSSasha Smundak// relative to a different package also called foo. 8*88d15eacSSasha Smundakpackage foo 9*88d15eacSSasha Smundak 10*88d15eacSSasha Smundaktype Bar struct{ S string } 11