Rollup merge of #35452 - ubsan:precedence, r=steveklabnik

Finish fixing the operator precedence tables

Add the unstable `:` colon and `<-` inplace operators.

r? @steveklabnik
This commit is contained in:
Jonathan Turner 2016-08-08 13:25:57 -07:00 committed by GitHub
commit 936a6dfea5

View File

@ -3039,7 +3039,7 @@ The precedence of Rust binary operators is ordered as follows, going from
strong to weak:
```{.text .precedence}
as
as :
* / %
+ -
<< >>
@ -3050,6 +3050,7 @@ as
&&
||
.. ...
<-
=
```