diff --git a/src/phantom-data.md b/src/phantom-data.md index 46455e1..1bdecb2 100644 --- a/src/phantom-data.md +++ b/src/phantom-data.md @@ -49,8 +49,8 @@ impl Drop for Vec { /* … */ } 따라서 어떤 타입이 `Drop impl`을 가지고 있다면, **추가적으로 `_owns_T: PhantomData` 필드를 선언하는 것은 *불필요하고* 아무것도 달성하지 않습니다**, 해제 검사기가 볼 때에는요 (변성과 자동 트레잇들에서는 영향을 줍니다). - - (advanced edge case: if the type containing the `PhantomData` has no `Drop` impl at all, - but still has drop glue (by having _another_ field with drop glue), then the + - (advanced edge case: 만약 `PhantomData`를 포함하는 타입이 `Drop` 구현이 전혀 없지만, + `Drop` 구현이 있는 _다른_ 필드를 포함한다면, then the dropck/`#[may_dangle]` considerations mentioned herein do apply as well: a `PhantomData` field will then require `T` to be droppable whenever the containing type goes out of scope).