rust/compiler
Nicholas Nethercote af32411f20 Avoid double-interning some BoundVariableKinds.
This function has this line twice:
```
let bound_vars = tcx.intern_bound_variable_kinds(&bound_vars);
```
The second occurrence is effectively a no-op, because the first
occurrence interned any that needed it.
2023-02-17 22:24:34 +11:00
..
2023-02-16 15:14:45 +11:00
2023-02-17 22:24:34 +11:00