]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3099.stderr
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / issues / issue-3099.stderr
1 error[E0428]: the name `a` is defined multiple times
2   --> $DIR/issue-3099.rs:5:1
3    |
4 LL | fn a(x: String) -> String {
5    | ------------------------- previous definition of the value `a` here
6 ...
7 LL | fn a(x: String, y: String) -> String {
8    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `a` redefined here
9    |
10    = note: `a` must be defined only once in the value namespace of this module
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0428`.