bors[bot] 162481d5ce
Merge #4023
4023: Fix another crash from wrong binders r=matklad a=flodiebold

Basically, if we had something like `dyn Trait<T>` (where `T` is a type parameter) in an impl we lowered that to `dyn Trait<^0.0>`, when it should be `dyn Trait<^1.0>` because the `dyn` introduces a new binder. With one type parameter, that's just wrong, with two, it'll lead to crashes.

Co-authored-by: Florian Diebold <flodiebold@gmail.com>
2020-04-18 08:48:08 +00:00
..
2020-04-14 13:57:02 -04:00
2020-04-17 12:39:20 +00:00
2020-04-18 08:48:08 +00:00
2020-04-17 04:08:01 +08:00
2020-04-17 09:31:57 +00:00