Skip to content

Commit a3ffa1e

Browse files
committed
Improve non-boolean literal error in cfg predicate
1 parent 781f184 commit a3ffa1e

File tree

5 files changed

+7
-3
lines changed

5 files changed

+7
-3
lines changed

compiler/rustc_attr/messages.ftl

+2
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,8 @@ attr_unknown_version_literal =
107107
attr_unstable_cfg_target_compact =
108108
compact `cfg(target(..))` is experimental and subject to change
109109
110+
attr_unsupported_literal_cfg_boolean =
111+
literal in `cfg` predicate value must be a boolean
110112
attr_unsupported_literal_cfg_string =
111113
literal in `cfg` predicate value must be a string
112114
attr_unsupported_literal_deprecated_kv_pair =

compiler/rustc_attr/src/builtin.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ pub fn is_builtin_attr(attr: &Attribute) -> bool {
3636
pub(crate) enum UnsupportedLiteralReason {
3737
Generic,
3838
CfgString,
39+
CfgBoolean,
3940
DeprecatedString,
4041
DeprecatedKvPair,
4142
}
@@ -623,7 +624,7 @@ pub fn eval_condition(
623624
_ => {
624625
dcx.emit_err(session_diagnostics::UnsupportedLiteral {
625626
span: cfg.span(),
626-
reason: UnsupportedLiteralReason::Generic,
627+
reason: UnsupportedLiteralReason::CfgBoolean,
627628
is_bytestr: false,
628629
start_point_span: sess.source_map().start_point(cfg.span()),
629630
});

compiler/rustc_attr/src/session_diagnostics.rs

+1
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ impl<'a, G: EmissionGuarantee> Diagnostic<'a, G> for UnsupportedLiteral {
206206
let mut diag = Diag::new(dcx, level, match self.reason {
207207
UnsupportedLiteralReason::Generic => fluent::attr_unsupported_literal_generic,
208208
UnsupportedLiteralReason::CfgString => fluent::attr_unsupported_literal_cfg_string,
209+
UnsupportedLiteralReason::CfgBoolean => fluent::attr_unsupported_literal_cfg_boolean,
209210
UnsupportedLiteralReason::DeprecatedString => {
210211
fluent::attr_unsupported_literal_deprecated_string
211212
}

tests/ui/macros/cfg.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
fn main() {
22
cfg!(); //~ ERROR macro requires a cfg-pattern
3-
cfg!(123); //~ ERROR unsupported literal
3+
cfg!(123); //~ ERROR literal in `cfg` predicate value must be a boolean
44
cfg!(foo = 123); //~ ERROR literal in `cfg` predicate value must be a string
55
cfg!(foo, bar); //~ ERROR expected 1 cfg-pattern
66
}

tests/ui/macros/cfg.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LL | cfg!();
66
|
77
= note: this error originates in the macro `cfg` (in Nightly builds, run with -Z macro-backtrace for more info)
88

9-
error[E0565]: unsupported literal
9+
error[E0565]: literal in `cfg` predicate value must be a boolean
1010
--> $DIR/cfg.rs:3:10
1111
|
1212
LL | cfg!(123);

0 commit comments

Comments
 (0)