summaryrefslogtreecommitdiffstats
path: root/tests/ui/fully-qualified-type/fully-qualified-type-name2.stderr
blob: c7c0846595d5a60b4e1ef265d75ef332ad21cc12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0308]: mismatched types
  --> $DIR/fully-qualified-type-name2.rs:12:12
   |
LL | fn bar(x: x::Foo) -> y::Foo {
   |                      ------ expected `y::Foo` because of return type
LL |     return x;
   |            ^ expected `y::Foo`, found `x::Foo`
   |
   = note: `x::Foo` and `y::Foo` have similar names, but are actually distinct types
note: `x::Foo` is defined in module `crate::x` of the current crate
  --> $DIR/fully-qualified-type-name2.rs:4:5
   |
LL |     pub enum Foo { }
   |     ^^^^^^^^^^^^
note: `y::Foo` is defined in module `crate::y` of the current crate
  --> $DIR/fully-qualified-type-name2.rs:8:5
   |
LL |     pub enum Foo { }
   |     ^^^^^^^^^^^^

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.