diff options
| author | Matthew Jasper <mjjasper1@gmail.com> | 2019-09-18 21:31:25 +0100 |
|---|---|---|
| committer | Matthew Jasper <mjjasper1@gmail.com> | 2019-12-18 20:30:00 +0000 |
| commit | 6dcc78997f19822373ed17549004282da82851dc (patch) | |
| tree | 1d8d2f7290e5c286804aecf8679d0e0ad41bd175 /src/librustc_error_codes/error_codes | |
| parent | 15931947f59e0010b73469711cb811f09aaf0cdd (diff) | |
| download | rust-6dcc78997f19822373ed17549004282da82851dc.tar.gz rust-6dcc78997f19822373ed17549004282da82851dc.zip | |
Add more tests for raw_ref_op
Diffstat (limited to 'src/librustc_error_codes/error_codes')
| -rw-r--r-- | src/librustc_error_codes/error_codes/E0745.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_error_codes/error_codes/E0745.md b/src/librustc_error_codes/error_codes/E0745.md index 39bebdcd375..6595691ce78 100644 --- a/src/librustc_error_codes/error_codes/E0745.md +++ b/src/librustc_error_codes/error_codes/E0745.md @@ -11,7 +11,7 @@ fn temp_address() { To avoid the error, first bind the temporary to a named local variable. -```ignore (not yet implemented) +``` # #![feature(raw_ref_op)] fn temp_address() { let val = 2; |
