Browse Source

reflect: replace all_test with copy from upstream

pull/3591/head
Damian Gryski 2 years ago
committed by Ron Evans
parent
commit
c482d65397
  1. 8202
      src/reflect/all_test.go
  2. 10
      src/reflect/internal/example1/example.go
  3. 10
      src/reflect/internal/example2/example.go

8202
src/reflect/all_test.go

File diff suppressed because it is too large

10
src/reflect/internal/example1/example.go

@ -0,0 +1,10 @@
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package example1
type MyStruct struct {
MyStructs []MyStruct
MyStruct *MyStruct
}

10
src/reflect/internal/example2/example.go

@ -0,0 +1,10 @@
// Copyright 2021 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package example2
type MyStruct struct {
MyStructs []MyStruct
MyStruct *MyStruct
}
Loading…
Cancel
Save