|
1 | | -error: cannot find macro `unknown_macro` |
| 1 | +error: cannot find macro `unknown_macro` in this scope |
2 | 2 | --> $DIR/impl-fn-nesting.rs:32:13 |
3 | 3 | | |
4 | 4 | LL | unknown_macro!(); |
5 | 5 | | ^^^^^^^^^^^^^ not found in this scope |
6 | 6 |
|
7 | | -error[E0405]: cannot find trait `UnknownBound` |
| 7 | +error[E0405]: cannot find trait `UnknownBound` in this scope |
8 | 8 | --> $DIR/impl-fn-nesting.rs:11:13 |
9 | 9 | | |
10 | 10 | LL | pub fn f<B: UnknownBound>(a: UnknownType, b: B) { |
11 | 11 | | ^^^^^^^^^^^^ not found in this scope |
12 | 12 |
|
13 | | -error[E0412]: cannot find type `UnknownType` |
| 13 | +error[E0412]: cannot find type `UnknownType` in this scope |
14 | 14 | --> $DIR/impl-fn-nesting.rs:11:30 |
15 | 15 | | |
16 | 16 | LL | pub fn f<B: UnknownBound>(a: UnknownType, b: B) { |
17 | 17 | | ^^^^^^^^^^^ not found in this scope |
18 | 18 |
|
19 | | -error[E0405]: cannot find trait `UnknownTrait` |
| 19 | +error[E0405]: cannot find trait `UnknownTrait` in this scope |
20 | 20 | --> $DIR/impl-fn-nesting.rs:14:10 |
21 | 21 | | |
22 | 22 | LL | impl UnknownTrait for ValidType {} |
23 | 23 | | ^^^^^^^^^^^^ not found in this scope |
24 | 24 |
|
25 | | -error[E0405]: cannot find trait `UnknownTrait` |
| 25 | +error[E0405]: cannot find trait `UnknownTrait` in this scope |
26 | 26 | --> $DIR/impl-fn-nesting.rs:15:27 |
27 | 27 | | |
28 | 28 | LL | impl<T: UnknownBound> UnknownTrait for T {} |
29 | 29 | | ^^^^^^^^^^^^ not found in this scope |
30 | 30 |
|
31 | | -error[E0405]: cannot find trait `UnknownBound` |
| 31 | +error[E0405]: cannot find trait `UnknownBound` in this scope |
32 | 32 | --> $DIR/impl-fn-nesting.rs:15:13 |
33 | 33 | | |
34 | 34 | LL | impl<T: UnknownBound> UnknownTrait for T {} |
35 | 35 | | ^^^^^^^^^^^^ not found in this scope |
36 | 36 |
|
37 | | -error[E0412]: cannot find type `UnknownType` |
| 37 | +error[E0412]: cannot find type `UnknownType` in this scope |
38 | 38 | --> $DIR/impl-fn-nesting.rs:18:25 |
39 | 39 | | |
40 | 40 | LL | impl ValidTrait for UnknownType {} |
41 | 41 | | ^^^^^^^^^^^ not found in this scope |
42 | 42 |
|
43 | | -error[E0405]: cannot find trait `UnknownBound` |
| 43 | +error[E0405]: cannot find trait `UnknownBound` in this scope |
44 | 44 | --> $DIR/impl-fn-nesting.rs:20:53 |
45 | 45 | | |
46 | 46 | LL | impl ValidTrait for ValidType where ValidTrait: UnknownBound {} |
47 | 47 | | ^^^^^^^^^^^^ not found in this scope |
48 | 48 |
|
49 | | -error[E0412]: cannot find type `UnknownType` |
| 49 | +error[E0412]: cannot find type `UnknownType` in this scope |
50 | 50 | --> $DIR/impl-fn-nesting.rs:25:21 |
51 | 51 | | |
52 | 52 | LL | type Item = UnknownType; |
53 | 53 | | ^^^^^^^^^^^ not found in this scope |
54 | 54 |
|
55 | | -error[E0412]: cannot find type `UnknownType` |
| 55 | +error[E0412]: cannot find type `UnknownType` in this scope |
56 | 56 | --> $DIR/impl-fn-nesting.rs:44:37 |
57 | 57 | | |
58 | 58 | LL | pub fn doubly_nested(c: UnknownType) { |
|
0 commit comments