aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/error.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/error.go')
-rw-r--r--src/runtime/error.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/runtime/error.go b/src/runtime/error.go
index a211fbf515..933c3cbec3 100644
--- a/src/runtime/error.go
+++ b/src/runtime/error.go
@@ -258,7 +258,7 @@ func printanycustomtype(i any) {
eface := efaceOf(&i)
typestring := eface._type.string()
- switch eface._type.kind {
+ switch eface._type.Kind_ {
case kindString:
print(typestring, `("`, *(*string)(eface.data), `")`)
case kindBool: