diff options
| author | Dylan DPC <99973273+Dylan-DPC@users.noreply.github.com> | 2022-06-29 17:59:31 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-29 17:59:31 +0530 |
| commit | d10497bba2b257162ad10ddeb729341c72f58c2f (patch) | |
| tree | 93e4b465dcafeb177bcf383dd9fc4ac0887ac09b /src/test/ui/error-codes | |
| parent | 66c83ffca1512ed76f9445ec7f7280f768ef71c4 (diff) | |
| parent | 98af1bfeccf1ec1f9e896ecc912b5cc808408378 (diff) | |
| download | rust-d10497bba2b257162ad10ddeb729341c72f58c2f.tar.gz rust-d10497bba2b257162ad10ddeb729341c72f58c2f.zip | |
Rollup merge of #98415 - compiler-errors:rustc-borrowck-session-diagnostic-1, r=davidtwco
Migrate some `rustc_borrowck` diagnostics to `SessionDiagnostic` Self-explanatory r? ```@davidtwco```
Diffstat (limited to 'src/test/ui/error-codes')
| -rw-r--r-- | src/test/ui/error-codes/E0161.base.stderr | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/ui/error-codes/E0161.base.stderr b/src/test/ui/error-codes/E0161.base.stderr index fb578cda17e..15d98b657a2 100644 --- a/src/test/ui/error-codes/E0161.base.stderr +++ b/src/test/ui/error-codes/E0161.base.stderr @@ -1,8 +1,8 @@ -error[E0161]: cannot move a value of type dyn Bar: the size of dyn Bar cannot be statically determined +error[E0161]: cannot move a value of type `dyn Bar` --> $DIR/E0161.rs:16:5 | LL | x.f(); - | ^^^^^ + | ^^^^^ the size of `dyn Bar` cannot be statically determined error: aborting due to previous error |
