summaryrefslogtreecommitdiffstats
path: root/tests/ui/mismatched_types/similar_paths.stderr
blob: 46a383325526db3371d9a1eb99bf66d534fa1f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0308]: mismatched types
  --> $DIR/similar_paths.rs:7:5
   |
LL | pub fn foo() -> Option<u8> {
   |                 ---------- expected `Option<u8>` because of return type
LL |     Some(42_u8)
   |     ^^^^^^^^^^^ expected enum `Option`, found enum `std::option::Option`
   |
   = note: enum `std::option::Option` and enum `Option` have similar names, but are actually distinct types
note: enum `std::option::Option` is defined in crate `core`
  --> $SRC_DIR/core/src/option.rs:LL:COL
note: enum `Option` is defined in the current crate
  --> $DIR/similar_paths.rs:1:1
   |
LL | enum Option<T> {
   | ^^^^^^^^^^^^^^

error: aborting due to previous error

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