Skip to content

Commit afa35e9

Browse files
Print constness in TraitPredPrintModifiersAndPath
1 parent 7467c3a commit afa35e9

6 files changed

+11
-8
lines changed

compiler/rustc_middle/src/ty/print/pretty.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -2880,11 +2880,15 @@ define_print_and_forward_display! {
28802880
}
28812881

28822882
TraitPredPrintModifiersAndPath<'tcx> {
2883-
// FIXME(effects) print `~const` here
2883+
if let Some(idx) = cx.tcx().generics_of(self.0.trait_ref.def_id).host_effect_index
2884+
{
2885+
if self.0.trait_ref.args.const_at(idx) != cx.tcx().consts.true_ {
2886+
p!("~const ");
2887+
}
2888+
}
28842889
if let ty::ImplPolarity::Negative = self.0.polarity {
28852890
p!("!")
28862891
}
2887-
28882892
p!(print(self.0.trait_ref.print_only_trait_path()));
28892893
}
28902894

@@ -2919,7 +2923,6 @@ define_print_and_forward_display! {
29192923
p!("~const ");
29202924
}
29212925
}
2922-
// FIXME(effects) print `~const` here
29232926
if let ty::ImplPolarity::Negative = self.polarity {
29242927
p!("!");
29252928
}

tests/ui/rfcs/rfc-2632-const-trait-impl/call-const-trait-method-fail.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `u32: ~const Plus` is not satisfied
22
--> $DIR/call-const-trait-method-fail.rs:25:5
33
|
44
LL | a.plus(b)
5-
| ^ the trait `Plus` is not implemented for `u32`
5+
| ^ the trait `~const Plus` is not implemented for `u32`
66
|
77
= help: the trait `Plus` is implemented for `u32`
88

tests/ui/rfcs/rfc-2632-const-trait-impl/call-generic-method-nonconst.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `S: ~const Foo` is not satisfied
22
--> $DIR/call-generic-method-nonconst.rs:23:34
33
|
44
LL | pub const EQ: bool = equals_self(&S);
5-
| ----------- ^^ the trait `Foo` is not implemented for `S`
5+
| ----------- ^^ the trait `~const Foo` is not implemented for `S`
66
| |
77
| required by a bound introduced by this call
88
|

tests/ui/rfcs/rfc-2632-const-trait-impl/const-default-method-bodies.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `NonConstImpl: ~const ConstDefaultFn` is not satis
22
--> $DIR/const-default-method-bodies.rs:24:18
33
|
44
LL | NonConstImpl.a();
5-
| ^ the trait `ConstDefaultFn` is not implemented for `NonConstImpl`
5+
| ^ the trait `~const ConstDefaultFn` is not implemented for `NonConstImpl`
66
|
77
= help: the trait `ConstDefaultFn` is implemented for `NonConstImpl`
88

tests/ui/rfcs/rfc-2632-const-trait-impl/cross-crate.gatednc.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `cross_crate::NonConst: ~const cross_crate::MyTrai
22
--> $DIR/cross-crate.rs:17:14
33
|
44
LL | NonConst.func();
5-
| ^^^^ the trait `cross_crate::MyTrait` is not implemented for `cross_crate::NonConst`
5+
| ^^^^ the trait `~const cross_crate::MyTrait` is not implemented for `cross_crate::NonConst`
66
|
77
= help: the trait `cross_crate::MyTrait` is implemented for `cross_crate::NonConst`
88

tests/ui/rfcs/rfc-2632-const-trait-impl/default-method-body-is-const-same-trait-ck.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ error[E0277]: the trait bound `(): ~const Tr` is not satisfied
22
--> $DIR/default-method-body-is-const-same-trait-ck.rs:8:12
33
|
44
LL | ().a()
5-
| ^ the trait `Tr` is not implemented for `()`
5+
| ^ the trait `~const Tr` is not implemented for `()`
66
|
77
= help: the trait `Tr` is implemented for `()`
88

0 commit comments

Comments
 (0)