diff options
| author | François Mockers <mockersf@gmail.com> | 2018-10-17 01:21:40 +0200 |
|---|---|---|
| committer | François Mockers <mockersf@gmail.com> | 2018-10-17 01:21:40 +0200 |
| commit | 2ba567fc2799990f183f7b46e649bb8ce2de6787 (patch) | |
| tree | c40c82a855a821c5dd3ac2bf854d804184ddaa29 /src/test/ui/imports | |
| parent | ad4cea408df885f4c5b026aaafa0beed4e365c61 (diff) | |
| download | rust-2ba567fc2799990f183f7b46e649bb8ce2de6787.tar.gz rust-2ba567fc2799990f183f7b46e649bb8ce2de6787.zip | |
fix other tests failing due to change in case or new suggestion for extern crate
Diffstat (limited to 'src/test/ui/imports')
| -rw-r--r-- | src/test/ui/imports/duplicate.stderr | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ui/imports/duplicate.stderr b/src/test/ui/imports/duplicate.stderr index 9cdd7aa88f1..5d51981e8af 100644 --- a/src/test/ui/imports/duplicate.stderr +++ b/src/test/ui/imports/duplicate.stderr @@ -7,7 +7,7 @@ LL | use a::foo; //~ ERROR the name `foo` is defined multiple times | ^^^^^^ `foo` reimported here | = note: `foo` must be defined only once in the value namespace of this module -help: You can use `as` to change the binding name of the import +help: you can use `as` to change the binding name of the import | LL | use a::foo as other_foo; //~ ERROR the name `foo` is defined multiple times | ^^^^^^^^^^^^^^^^^^^ |
