about summary refs log tree commit diff
path: root/src/librustc_parse/parser
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2020-02-12 22:43:20 +0000
committerbors <bors@rust-lang.org>2020-02-12 22:43:20 +0000
commit92d8e82f6b571cecb1809a9aa85f8947e84b648d (patch)
tree389649e7fcb8d8ad1709183e482bc0f158441f5f /src/librustc_parse/parser
parenta1912f2e89b77cfe2a0e64b96f444848fe4e2d49 (diff)
parent839adda4be859bac6518d3d3e0f6093defefae65 (diff)
downloadrust-92d8e82f6b571cecb1809a9aa85f8947e84b648d.tar.gz
rust-92d8e82f6b571cecb1809a9aa85f8947e84b648d.zip
Auto merge of #69105 - Dylan-DPC:rollup-n73lh5h, r=Dylan-DPC
Rollup of 7 pull requests

Successful merges:

 - #67954 (Support new LLVM pass manager)
 - #68981 ( Account for type params on method without parentheses)
 - #69002 (miri: improve and simplify overflow detection)
 - #69038 (Add initial debug fmt for Backtrace)
 - #69040 (Cleanup SGX entry code)
 - #69086 (Update compiler-builtins to 0.1.25)
 - #69095 (Minified theme check)

Failed merges:

r? @ghost
Diffstat (limited to 'src/librustc_parse/parser')
-rw-r--r--src/librustc_parse/parser/expr.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_parse/parser/expr.rs b/src/librustc_parse/parser/expr.rs
index c8c0ba4c66e..77748d16653 100644
--- a/src/librustc_parse/parser/expr.rs
+++ b/src/librustc_parse/parser/expr.rs
@@ -823,7 +823,7 @@ impl<'a> Parser<'a> {
             if let Some(args) = segment.args {
                 self.struct_span_err(
                     args.span(),
-                    "field expressions may not have generic arguments",
+                    "field expressions cannot have generic arguments",
                 )
                 .emit();
             }