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

Fix precedence table in reference

Adds `..` and `...` and puts them above `=`

r? @steveklabnik
This commit is contained in:
Guillaume Gomez 2016-08-05 16:12:59 +02:00 committed by GitHub
commit 6597a28144

View File

@ -3049,7 +3049,8 @@ as
== != < > <= >=
&&
||
= ..
.. ...
=
```
Operators at the same precedence level are evaluated left-to-right. [Unary