File tree Expand file tree Collapse file tree 2 files changed +9
-8
lines changed
branches/auto/src/librustc_resolve Expand file tree Collapse file tree 2 files changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
8
8
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
9
9
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
10
10
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11
- refs/heads/auto: a7b8f5bc47966bc995004f5905f831be4b68d026
11
+ refs/heads/auto: 3254ae6a527ddace29d9d740c57fdc6207624cfc
12
12
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
13
13
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
14
14
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1
Original file line number Diff line number Diff line change @@ -583,9 +583,10 @@ Please verify you didn't misspell the import's name.
583
583
"## ,
584
584
585
585
E0437 : r##"
586
- Trait impls can only implement associated types that are members of the trait in
587
- question. This error indicates that you attempted to implement an associated
588
- type whose name does not match the name of any associated type in the trait.
586
+ Trait implementations can only implement associated types that are members of
587
+ the trait in question. This error indicates that you attempted to implement
588
+ an associated type whose name does not match the name of any associated type
589
+ in the trait.
589
590
590
591
Here is an example that demonstrates the error:
591
592
@@ -607,10 +608,10 @@ impl Foo for i32 {}
607
608
"## ,
608
609
609
610
E0438 : r##"
610
- Trait impls can only implement associated constants that are members of the
611
- trait in question. This error indicates that you attempted to implement an
612
- associated constant whose name does not match the name of any associated
613
- constant in the trait.
611
+ Trait implementations can only implement associated constants that are
612
+ members of the trait in question. This error indicates that you
613
+ attempted to implement an associated constant whose name does not
614
+ match the name of any associated constant in the trait.
614
615
615
616
Here is an example that demonstrates the error:
616
617
You can’t perform that action at this time.
0 commit comments