Skip to content

Commit

Permalink
Rollup merge of rust-lang#35452 - ubsan:precedence, r=steveklabnik
Browse files Browse the repository at this point in the history
Finish fixing the operator precedence tables

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

r? @steveklabnik
  • Loading branch information
Jonathan Turner authored Aug 8, 2016
2 parents c479f02 + 7c1bb9a commit 936a6df
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/doc/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -3039,7 +3039,7 @@ The precedence of Rust binary operators is ordered as follows, going from
strong to weak:

```{.text .precedence}
as
as :
* / %
+ -
<< >>
Expand All @@ -3050,6 +3050,7 @@ as
&&
||
.. ...
<-
=
```

Expand Down

0 comments on commit 936a6df

Please sign in to comment.