Skip to content

Commit e86bc89

Browse files
authored
Rollup merge of #103176 - nnethercote:fix-TyKind-is_simple_path, r=spastorino
Fix `TyKind::is_simple_path` Fixes #103157. r? `@spastorino`
2 parents d6eb7bc + 9a23f60 commit e86bc89

File tree

5 files changed

+54
-5
lines changed

5 files changed

+54
-5
lines changed

compiler/rustc_ast/src/ast.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -2060,8 +2060,11 @@ impl TyKind {
20602060
}
20612061

20622062
pub fn is_simple_path(&self) -> Option<Symbol> {
2063-
if let TyKind::Path(None, Path { segments, .. }) = &self && segments.len() == 1 {
2064-
Some(segments[0].ident.name)
2063+
if let TyKind::Path(None, Path { segments, .. }) = &self
2064+
&& let [segment] = &segments[..]
2065+
&& segment.args.is_none()
2066+
{
2067+
Some(segment.ident.name)
20652068
} else {
20662069
None
20672070
}

src/test/ui/deriving/deriving-all-codegen.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ enum Mixed {
8585
P,
8686
Q,
8787
R(u32),
88-
S { d1: u32, d2: u32 },
88+
S { d1: Option<u32>, d2: Option<i32> },
8989
}
9090

9191
// An enum with no fieldless variants. Note that `Default` cannot be derived

src/test/ui/deriving/deriving-all-codegen.stdout

+6-2
Original file line numberDiff line numberDiff line change
@@ -809,15 +809,17 @@ enum Mixed {
809809
Q,
810810
R(u32),
811811
S {
812-
d1: u32,
813-
d2: u32,
812+
d1: Option<u32>,
813+
d2: Option<i32>,
814814
},
815815
}
816816
#[automatically_derived]
817817
impl ::core::clone::Clone for Mixed {
818818
#[inline]
819819
fn clone(&self) -> Mixed {
820820
let _: ::core::clone::AssertParamIsClone<u32>;
821+
let _: ::core::clone::AssertParamIsClone<Option<u32>>;
822+
let _: ::core::clone::AssertParamIsClone<Option<i32>>;
821823
*self
822824
}
823825
}
@@ -886,6 +888,8 @@ impl ::core::cmp::Eq for Mixed {
886888
#[no_coverage]
887889
fn assert_receiver_is_total_eq(&self) -> () {
888890
let _: ::core::cmp::AssertParamIsEq<u32>;
891+
let _: ::core::cmp::AssertParamIsEq<Option<u32>>;
892+
let _: ::core::cmp::AssertParamIsEq<Option<i32>>;
889893
}
890894
}
891895
#[automatically_derived]

src/test/ui/deriving/issue-103157.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// check-fail
2+
3+
#[derive(PartialEq, Eq)]
4+
pub enum Value {
5+
Boolean(Option<bool>),
6+
Float(Option<f64>), //~ ERROR the trait bound `f64: Eq` is not satisfied
7+
}
8+
9+
fn main() {
10+
let a = Value::Float(Some(f64::NAN));
11+
assert!(a == a);
12+
}
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
error[E0277]: the trait bound `f64: Eq` is not satisfied
2+
--> $DIR/issue-103157.rs:6:11
3+
|
4+
LL | #[derive(PartialEq, Eq)]
5+
| -- in this derive macro expansion
6+
...
7+
LL | Float(Option<f64>),
8+
| ^^^^^^^^^^^ the trait `Eq` is not implemented for `f64`
9+
|
10+
= help: the following other types implement trait `Eq`:
11+
i128
12+
i16
13+
i32
14+
i64
15+
i8
16+
isize
17+
u128
18+
u16
19+
and 4 others
20+
= note: required for `Option<f64>` to implement `Eq`
21+
note: required by a bound in `AssertParamIsEq`
22+
--> $SRC_DIR/core/src/cmp.rs:LL:COL
23+
|
24+
LL | pub struct AssertParamIsEq<T: Eq + ?Sized> {
25+
| ^^ required by this bound in `AssertParamIsEq`
26+
= note: this error originates in the derive macro `Eq` (in Nightly builds, run with -Z macro-backtrace for more info)
27+
28+
error: aborting due to previous error
29+
30+
For more information about this error, try `rustc --explain E0277`.

0 commit comments

Comments
 (0)