]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/no-implicit-prelude-nested.stderr
Rollup merge of #57107 - mjbshaw:thread_local_test, r=nikomatsakis
[rust.git] / src / test / ui / no-implicit-prelude-nested.stderr
index dd0666a6fd4695ddb01d71dd04fb0360fae3ef01..7ef4bfbaf9920d8a79c06cb86d1b25a626322c69 100644 (file)
@@ -1,5 +1,5 @@
 error[E0405]: cannot find trait `Add` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:21:14
+  --> $DIR/no-implicit-prelude-nested.rs:11:14
    |
 LL |         impl Add for Test {} //~ ERROR cannot find trait `Add` in this scope
    |              ^^^ not found in this scope
@@ -9,7 +9,7 @@ LL |         use std::ops::Add;
    |
 
 error[E0405]: cannot find trait `Clone` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:22:14
+  --> $DIR/no-implicit-prelude-nested.rs:12:14
    |
 LL |         impl Clone for Test {} //~ ERROR cannot find trait `Clone` in this scope
    |              ^^^^^ not found in this scope
@@ -21,7 +21,7 @@ LL |         use std::prelude::v1::Clone;
    |
 
 error[E0405]: cannot find trait `Iterator` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:23:14
+  --> $DIR/no-implicit-prelude-nested.rs:13:14
    |
 LL |         impl Iterator for Test {} //~ ERROR cannot find trait `Iterator` in this scope
    |              ^^^^^^^^ not found in this scope
@@ -33,7 +33,7 @@ LL |         use std::prelude::v1::Iterator;
    |
 
 error[E0405]: cannot find trait `ToString` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:24:14
+  --> $DIR/no-implicit-prelude-nested.rs:14:14
    |
 LL |         impl ToString for Test {} //~ ERROR cannot find trait `ToString` in this scope
    |              ^^^^^^^^ not found in this scope
@@ -45,13 +45,13 @@ LL |         use std::string::ToString;
    |
 
 error[E0405]: cannot find trait `Writer` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:25:14
+  --> $DIR/no-implicit-prelude-nested.rs:15:14
    |
 LL |         impl Writer for Test {} //~ ERROR cannot find trait `Writer` in this scope
    |              ^^^^^^ not found in this scope
 
 error[E0425]: cannot find function `drop` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:28:13
+  --> $DIR/no-implicit-prelude-nested.rs:18:13
    |
 LL |             drop(2) //~ ERROR cannot find function `drop` in this scope
    |             ^^^^ not found in this scope
@@ -63,7 +63,7 @@ LL |         use std::prelude::v1::drop;
    |
 
 error[E0405]: cannot find trait `Add` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:33:10
+  --> $DIR/no-implicit-prelude-nested.rs:23:10
    |
 LL |     impl Add for Test {} //~ ERROR cannot find trait `Add` in this scope
    |          ^^^ not found in this scope
@@ -73,7 +73,7 @@ LL |     use std::ops::Add;
    |
 
 error[E0405]: cannot find trait `Clone` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:34:10
+  --> $DIR/no-implicit-prelude-nested.rs:24:10
    |
 LL |     impl Clone for Test {} //~ ERROR cannot find trait `Clone` in this scope
    |          ^^^^^ not found in this scope
@@ -85,7 +85,7 @@ LL |     use std::prelude::v1::Clone;
    |
 
 error[E0405]: cannot find trait `Iterator` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:35:10
+  --> $DIR/no-implicit-prelude-nested.rs:25:10
    |
 LL |     impl Iterator for Test {} //~ ERROR cannot find trait `Iterator` in this scope
    |          ^^^^^^^^ not found in this scope
@@ -97,7 +97,7 @@ LL |     use std::prelude::v1::Iterator;
    |
 
 error[E0405]: cannot find trait `ToString` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:36:10
+  --> $DIR/no-implicit-prelude-nested.rs:26:10
    |
 LL |     impl ToString for Test {} //~ ERROR cannot find trait `ToString` in this scope
    |          ^^^^^^^^ not found in this scope
@@ -109,13 +109,13 @@ LL |     use std::string::ToString;
    |
 
 error[E0405]: cannot find trait `Writer` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:37:10
+  --> $DIR/no-implicit-prelude-nested.rs:27:10
    |
 LL |     impl Writer for Test {} //~ ERROR cannot find trait `Writer` in this scope
    |          ^^^^^^ not found in this scope
 
 error[E0425]: cannot find function `drop` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:40:9
+  --> $DIR/no-implicit-prelude-nested.rs:30:9
    |
 LL |         drop(2) //~ ERROR cannot find function `drop` in this scope
    |         ^^^^ not found in this scope
@@ -127,7 +127,7 @@ LL |     use std::prelude::v1::drop;
    |
 
 error[E0405]: cannot find trait `Add` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:48:14
+  --> $DIR/no-implicit-prelude-nested.rs:38:14
    |
 LL |         impl Add for Test {} //~ ERROR cannot find trait `Add` in this scope
    |              ^^^ not found in this scope
@@ -137,7 +137,7 @@ LL |         use std::ops::Add;
    |
 
 error[E0405]: cannot find trait `Clone` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:49:14
+  --> $DIR/no-implicit-prelude-nested.rs:39:14
    |
 LL |         impl Clone for Test {} //~ ERROR cannot find trait `Clone` in this scope
    |              ^^^^^ not found in this scope
@@ -149,7 +149,7 @@ LL |         use std::prelude::v1::Clone;
    |
 
 error[E0405]: cannot find trait `Iterator` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:50:14
+  --> $DIR/no-implicit-prelude-nested.rs:40:14
    |
 LL |         impl Iterator for Test {} //~ ERROR cannot find trait `Iterator` in this scope
    |              ^^^^^^^^ not found in this scope
@@ -161,7 +161,7 @@ LL |         use std::prelude::v1::Iterator;
    |
 
 error[E0405]: cannot find trait `ToString` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:51:14
+  --> $DIR/no-implicit-prelude-nested.rs:41:14
    |
 LL |         impl ToString for Test {} //~ ERROR cannot find trait `ToString` in this scope
    |              ^^^^^^^^ not found in this scope
@@ -173,13 +173,13 @@ LL |         use std::string::ToString;
    |
 
 error[E0405]: cannot find trait `Writer` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:52:14
+  --> $DIR/no-implicit-prelude-nested.rs:42:14
    |
 LL |         impl Writer for Test {} //~ ERROR cannot find trait `Writer` in this scope
    |              ^^^^^^ not found in this scope
 
 error[E0425]: cannot find function `drop` in this scope
-  --> $DIR/no-implicit-prelude-nested.rs:55:13
+  --> $DIR/no-implicit-prelude-nested.rs:45:13
    |
 LL |             drop(2) //~ ERROR cannot find function `drop` in this scope
    |             ^^^^ not found in this scope