2
2
mirror of https://github.com/octoleo/restic.git synced 2024-09-23 04:09:01 +00:00
restic/vendor/github.com/google/go-cmp/cmp/unsafe_panic.go

16 lines
392 B
Go
Raw Normal View History

2017-12-23 12:02:03 +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.
// +build purego appengine js
2017-12-23 12:02:03 +00:00
package cmp
import "reflect"
const supportAllowUnexported = false
func unsafeRetrieveField(reflect.Value, reflect.StructField) reflect.Value {
panic("unsafeRetrieveField is not implemented")
}