diff options
| author | Esteban Küber <esteban@kuber.com.ar> | 2018-01-19 19:57:10 -0800 |
|---|---|---|
| committer | Esteban Küber <esteban@kuber.com.ar> | 2018-02-01 15:06:20 -0800 |
| commit | c1383e4dc4bd6598f5d73d2d6b1054f61b2b99d4 (patch) | |
| tree | edf364f3770e1626b806a05c569ca8b57c3107cf /src/test/ui/impl-trait/equality.stderr | |
| parent | 56733bc9f8302409a2b6110f422512923c878154 (diff) | |
| download | rust-c1383e4dc4bd6598f5d73d2d6b1054f61b2b99d4.tar.gz rust-c1383e4dc4bd6598f5d73d2d6b1054f61b2b99d4.zip | |
Add filtering options to `rustc_on_unimplemented`
- filter error on the evaluated value of `Self` - filter error on the evaluated value of the type arguments - add argument to include custom note in diagnostic - allow the parser to parse `Self` when processing attributes - add custom message to binops
Diffstat (limited to 'src/test/ui/impl-trait/equality.stderr')
| -rw-r--r-- | src/test/ui/impl-trait/equality.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/impl-trait/equality.stderr b/src/test/ui/impl-trait/equality.stderr index 3fc08a0900f..8ec81903803 100644 --- a/src/test/ui/impl-trait/equality.stderr +++ b/src/test/ui/impl-trait/equality.stderr @@ -7,7 +7,7 @@ error[E0308]: mismatched types = note: expected type `i32` found type `u32` -error[E0277]: the trait bound `u32: std::ops::Add<impl Foo>` is not satisfied +error[E0277]: cannot add `impl Foo` to `u32` --> $DIR/equality.rs:34:11 | 34 | n + sum_to(n - 1) |
