blob: dd032354fef1fe39f12d19520c382463039daeb9 [file] [log] [blame]
Pragya Arya324337e2020-02-20 14:35:08 +05301// Copyright 2017, 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.md file.
4
5// +build purego
6
7package cmp
8
9import "reflect"
10
11const supportExporters = false
12
13func retrieveUnexportedField(reflect.Value, reflect.StructField) reflect.Value {
14 panic("no support for forcibly accessing unexported fields")
15}