mirror of
https://github.com/golang/go
synced 2024-11-06 03:16:10 -07:00
009d714098
pointers to go:notinheap types should be treated as scalars. That means they shouldn't be stored directly in interfaces, or directly in reflect.Value.ptr. Also be sure to use uintpr to compare such pointers in reflect.DeepEqual. Fixes #42076 Change-Id: I53735f6d434e9c3108d4940bd1bae14c61ef2a74 Reviewed-on: https://go-review.googlesource.com/c/go/+/264480 Trust: Keith Randall <khr@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
22 lines
340 B
Go
22 lines
340 B
Go
// run
|
|
|
|
// Copyright 2020 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 file.
|
|
|
|
package main
|
|
|
|
import "reflect"
|
|
|
|
//go:notinheap
|
|
type NIH struct {
|
|
}
|
|
|
|
var x, y NIH
|
|
|
|
func main() {
|
|
if reflect.DeepEqual(&x, &y) != true {
|
|
panic("should report true")
|
|
}
|
|
}
|