• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1error: comparison operators cannot be chained
2 --> tests/ui/chained-comparison.rs:6:19
3  |
46 |     ensure!(false == false == true);
5  |                   ^^       ^^
6  |
7help: split the comparison into two
8  |
96 |     ensure!(false == false && false == true);
10  |                            ++++++++
11