rust/src/librustc_back
Jakub Bukaj 3594c588bb rollup merge of #19211: aochagavia/tuple-index
This breaks code like

```
let t = (42i, 42i);
... t.0::<int> ...;
```

Change this code to not contain an unused type parameter. For example:

```
let t = (42i, 42i);
... t.0 ...;
```

Closes https://github.com/rust-lang/rust/issues/19096

[breaking-change]

r? @aturon
2014-11-23 14:11:56 -05:00
..
2014-11-19 13:23:05 -05:00
2014-11-19 05:31:45 +09:00
2014-11-04 05:07:47 -05:00
2014-11-17 22:41:33 +13:00