1// Copyright 2021 The Go Authors. All rights reserved.2// Use of this source code is governed by a BSD-style3// license that can be found in the LICENSE file.45packagea67typeMyIntint89typeMyIntAlias = MyInt1011func (mia *MyIntAlias) Get() int {
12returnint(*mia)
13}
14