diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2022-04-10 16:02:52 -0700 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2022-05-11 17:16:25 -0700 |
| commit | 003b954a43a7f1f9058f25e8f9b6ddfd4a3dced9 (patch) | |
| tree | 0f7e59be0a498f30146cc7290339125802f91f6a /src | |
| parent | 4bb15b3797452b87c6ea3189fa60dd52d59a567d (diff) | |
| download | rust-003b954a43a7f1f9058f25e8f9b6ddfd4a3dced9.tar.gz rust-003b954a43a7f1f9058f25e8f9b6ddfd4a3dced9.zip | |
Apply CR suggestions; add real tracking issue
Diffstat (limited to 'src')
| -rw-r--r-- | src/test/ui/consts/offset_from.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/ui/consts/offset_from.rs b/src/test/ui/consts/offset_from.rs index ad834e885a5..b53718316f3 100644 --- a/src/test/ui/consts/offset_from.rs +++ b/src/test/ui/consts/offset_from.rs @@ -1,7 +1,8 @@ // run-pass #![feature(const_ptr_offset_from)] -#![feature(ptr_unsigned_offset_from)] +#![feature(const_ptr_sub_ptr)] +#![feature(ptr_sub_ptr)] struct Struct { field: (), |
