We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7689080 commit 5f7e96dCopy full SHA for 5f7e96d
src/dropck.md
@@ -77,8 +77,13 @@ of the contents of any type that implements Drop.
77
それゆえに、コンパイラは Drop を実装しているいかなる型の内容の、実際の
78
デストラクションの順番を十分に推論できないのです。
79
80
+<!--
81
So why do we care? We care because if the type system isn't careful, it could
82
accidentally make dangling pointers. Consider the following simple program:
83
+-->
84
+
85
+ではなぜこれを気にするのでしょうか? 型システムが丁寧でない場合、誤ってダングリングポインタを
86
+生成しうるからです。次の単純なプログラムを考えてみましょう。
87
88
```rust
89
struct Inspector<'a>(&'a u8);
0 commit comments