2019-08-30 18:33:25 +00:00
|
|
|
// Copyright 2017, 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.md file.
|
|
|
|
|
2019-09-05 18:55:53 +00:00
|
|
|
// +build purego
|
2019-08-30 18:33:25 +00:00
|
|
|
|
|
|
|
package cmp
|
|
|
|
|
|
|
|
import "reflect"
|
|
|
|
|
2020-08-28 19:27:01 +00:00
|
|
|
const supportExporters = false
|
2019-08-30 18:33:25 +00:00
|
|
|
|
2020-08-28 19:27:01 +00:00
|
|
|
func retrieveUnexportedField(reflect.Value, reflect.StructField, bool) reflect.Value {
|
|
|
|
panic("no support for forcibly accessing unexported fields")
|
2019-08-30 18:33:25 +00:00
|
|
|
}
|