Rollup merge of #23187 - steveklabnik:gh17481, r=Manishearth

Fixes #17481
This commit is contained in:
Manish Goregaokar 2015-03-09 16:30:44 +05:30
commit 094b6bc831

View file

@ -3007,10 +3007,6 @@ A type cast expression is denoted with the binary operator `as`.
Executing an `as` expression casts the value on the left-hand side to the type
on the right-hand side.
A numeric value can be cast to any numeric type. A raw pointer value can be
cast to or from any integral type or raw pointer type. Any other cast is
unsupported and will fail to compile.
An example of an `as` expression:
```