Remove usage of isize in example
`isize` is a rare integer type, replace it with a more common one.
This commit is contained in:
@@ -142,7 +142,7 @@ declare_lint! {
|
||||
/// ```rust,compile_fail
|
||||
/// #![deny(box_pointers)]
|
||||
/// struct Foo {
|
||||
/// x: Box<isize>,
|
||||
/// x: Box<i32>,
|
||||
/// }
|
||||
/// ```
|
||||
///
|
||||
|
||||
Reference in New Issue
Block a user