error[E0308]: mismatched types --> $DIR/similar_paths.rs:7:5 | LL | pub fn foo() -> Option { | ---------- expected `Option` because of return type LL | Some(42_u8) | ^^^^^^^^^^^ expected `Option`, found `std::option::Option` | = note: `std::option::Option` and `Option` have similar names, but are actually distinct types note: `std::option::Option` is defined in crate `core` --> $SRC_DIR/core/src/option.rs:LL:COL note: `Option` is defined in the current crate --> $DIR/similar_paths.rs:1:1 | LL | enum Option { | ^^^^^^^^^^^^^^ error: aborting due to previous error For more information about this error, try `rustc --explain E0308`.