• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2018 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 p
6
7func A(arg interface{}) {
8	_ = arg.(interface{ Func() int32 })
9	_ = arg.(interface{ Func() int32 })
10	_ = arg.(interface{ Func() int32 })
11	_ = arg.(interface{ Func() int32 })
12	_ = arg.(interface{ Func() int32 })
13	_ = arg.(interface{ Func() int32 })
14	_ = arg.(interface{ Func() int32 })
15}
16