2018-11-17 11:00:00 -06:00
|
|
|
error: imports cannot refer to type parameters
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:14:9
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use T as _;
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: imports cannot refer to type parameters
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:15:9
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use T::U;
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: imports cannot refer to type parameters
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:16:9
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use T::*;
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
2018-12-30 11:07:43 -06:00
|
|
|
error: imports cannot refer to type parameters
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:20:9
|
2018-12-30 11:07:43 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use T;
|
2018-12-30 11:07:43 -06:00
|
|
|
| ^
|
|
|
|
|
2018-11-17 11:00:00 -06:00
|
|
|
error: imports cannot refer to local variables
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:26:9
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use x as _;
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: imports cannot refer to local variables
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:32:9
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use x;
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: imports cannot refer to local variables
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:38:17
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use x;
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: imports cannot refer to type parameters
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:46:10
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use {T as _, x};
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: imports cannot refer to local variables
|
2019-03-17 03:49:31 -05:00
|
|
|
--> $DIR/future-proofing-locals.rs:46:18
|
2018-11-17 11:00:00 -06:00
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | use {T as _, x};
|
2018-11-17 11:00:00 -06:00
|
|
|
| ^
|
|
|
|
|
2018-12-30 11:07:43 -06:00
|
|
|
error: aborting due to 9 previous errors
|
2018-11-17 11:00:00 -06:00
|
|
|
|