]> git.immae.eu Git - github/fretlink/terraform-provider-statuscake.git/blame - vendor/github.com/google/go-cmp/cmp/export_panic.go
update vendor and go.mod
[github/fretlink/terraform-provider-statuscake.git] / vendor / github.com / google / go-cmp / cmp / export_panic.go
CommitLineData
107c1cdb
ND
1// 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
863486a6 5// +build purego
107c1cdb
ND
6
7package cmp
8
9import "reflect"
10
11const supportAllowUnexported = false
12
863486a6
AG
13func retrieveUnexportedField(reflect.Value, reflect.StructField) reflect.Value {
14 panic("retrieveUnexportedField is not implemented")
107c1cdb 15}