mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
17 lines
499 B
Go
17 lines
499 B
Go
package testdata
|
|
|
|
type foo struct {
|
|
}
|
|
|
|
// AddressOfDereferencedValue --
|
|
func AddressOfDereferencedValue() {
|
|
x := &foo{}
|
|
_ = &*x // want "Found a no-op instruction that can be safely removed. It might be a result of writing code that does not do what was intended."
|
|
}
|
|
|
|
// DereferencedAddressOfValue --
|
|
func DereferencedAddressOfValue() {
|
|
x := foo{}
|
|
_ = *&x // want "Found a no-op instruction that can be safely removed. It might be a result of writing code that does not do what was intended."
|
|
}
|