Update pin-unpin.md

这里笔者应该是想说test1 与 test2交换了内存,但他的裸指针还是指向原地址。
但是这里运行效果一个是
```shell
a: test2, b: test1
a: test1, b: test2
```
pull/535/head
qixuan 3 years ago committed by GitHub
parent 42c87ef3db
commit 05c0e36749
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -211,14 +211,14 @@ fn main() {
按理来说,这样修改后,输出应该如下:
```rust
a: test1, b: test1
a: test2, b: test2
a: test1, b: test1
```
但是实际运行后,却产生了下面的输出:
```rust
a: test1, b: test1
a: test2, b: test1
a: test1, b: test2
```

Loading…
Cancel
Save