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