diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2022-08-25 14:49:09 +0200 |
|---|---|---|
| committer | Mara Bos <m-ou.se@m-ou.se> | 2022-08-25 14:49:09 +0200 |
| commit | 1b044da5bb87702a160537cf1137b8921b54ddd5 (patch) | |
| tree | 273e2bf000b57b7922f06b67dc9bfc39c1992e30 /compiler/rustc_parse_format/src/tests.rs | |
| parent | 4d45b0745ab227feb9000bc15713ade4b99241ea (diff) | |
| download | rust-1b044da5bb87702a160537cf1137b8921b54ddd5.tar.gz rust-1b044da5bb87702a160537cf1137b8921b54ddd5.zip | |
Separate CountIsStar from CountIsParam in rustc_parse_format.
Diffstat (limited to 'compiler/rustc_parse_format/src/tests.rs')
| -rw-r--r-- | compiler/rustc_parse_format/src/tests.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse_format/src/tests.rs b/compiler/rustc_parse_format/src/tests.rs index 44ef0cd0eb5..2f8c229c68f 100644 --- a/compiler/rustc_parse_format/src/tests.rs +++ b/compiler/rustc_parse_format/src/tests.rs @@ -244,7 +244,7 @@ fn format_counts() { fill: None, align: AlignUnknown, flags: 0, - precision: CountIsParam(0), + precision: CountIsStar(0), precision_span: Some(InnerSpan { start: 3, end: 5 }), width: CountImplied, width_span: None, |
