issue10788.go 338 B

1234567891011121314
  1. // Copyright 2015 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. package issue10788
  5. type TestStruct struct {
  6. Value string
  7. }
  8. type TestInterface interface {
  9. DoSomeWork(s *TestStruct)
  10. MultipleUnnamedParams(_ int, p0 string, 日本 int64)
  11. }