fix example for E0018

Fixes #25326
This commit is contained in:
Steve Klabnik 2015-05-27 14:51:58 -04:00
parent efcc1d1bcb
commit 62e5dee1c5

View file

@ -218,9 +218,9 @@ struct X { x: (), }
in a non-constant integer which lead to this error. Example:
```
const X: u32 = 50;
const Y: *const u32 = &X;
println!("{:?}", Y);
const X: u32 = 1;
const Y: usize = &X as *const u32 as usize;
println!("{}", Y);
```
"##,