blob: 1701af2a3c89c238c4e2af7d48af2abac0bf4f87 [file] [log] [blame]
Elia Battiston4750d3c2022-07-14 13:24:56 +00001//go:build !go1.17
2// +build !go1.17
3
4// TODO: once support for Go 1.16 is dropped, this file can be
5// merged/removed with assertion_compare_go1.17_test.go and
6// assertion_compare_can_convert.go
7
8package assert
9
10import "reflect"
11
12// Older versions of Go does not have the reflect.Value.CanConvert
13// method.
14func canConvert(value reflect.Value, to reflect.Type) bool {
15 return false
16}