Skip to content

Conversation

RalfJung
Copy link
Member

@RalfJung RalfJung commented Jul 17, 2025

This fixes rust-lang/const-eval#72 and makes swap_nonoverlapping fully work in const-eval by enhancing per-byte provenance tracking with tracking of which of the bytes of the pointer this one is. Later, if we see all the same bytes in the exact same order, we can treat it like a whole pointer again without ever risking a leak of the data bytes (that encode the offset into the allocation). This lifts the limitation that was discussed quite a bit in #137280.

For a concrete piece of code that used to fail and now works properly consider this example doing a byte-for-byte memcpy in const without using intrinsics:

use std::{mem::{self, MaybeUninit}, ptr};

type Byte = MaybeUninit<u8>;

const unsafe fn memcpy(dst: *mut Byte, src: *const Byte, n: usize) {
    let mut i = 0;
    while i < n {
        *dst.add(i) = *src.add(i);
        i += 1;
    }
}

const _MEMCPY: () = unsafe {
    let ptr = &42;
    let mut ptr2 = ptr::null::<i32>();
    // Copy from ptr to ptr2.
    memcpy(&mut ptr2 as *mut _ as *mut _, &ptr as *const _ as *const _, mem::size_of::<&i32>());
    assert!(*ptr2 == 42);
};

What makes this code tricky is that pointers are "opaque blobs" in const-eval, we cannot just let people look at the individual bytes since we don't know what those bytes look like -- that depends on the absolute address the pointed-to object will be placed at. The code above "breaks apart" a pointer into individual bytes, and then puts them back together in the same order elsewhere. This PR implements the logic to properly track how those individual bytes relate to the original pointer, and to recognize when they are in the right order again.

We still reject constants where the final value contains a not-fully-put-together pointer: I have no idea how one could construct an LLVM global where one byte is defined as "the 3rd byte of a pointer to that other global over there" -- and even if LLVM supports this somehow, we can leave implementing that to a future PR. It seems unlikely to me anyone would even want this, but who knows.^^

This also changes the behavior of Miri, by tracking the order of bytes with provenance and only considering a pointer to have valid provenance if all bytes are in the original order again. This is related to rust-lang/unsafe-code-guidelines#558. It means one cannot implement XOR linked lists with strict provenance any more, which is however only of theoretical interest. Practically I am curious if anyone will show up with any code that Miri now complains about - that would be interesting data. Cc @rust-lang/opsem

@rustbot
Copy link
Collaborator

rustbot commented Jul 17, 2025

r? @davidtwco

rustbot has assigned @davidtwco.
They will have a look at your PR within the next two weeks and either review your PR or reassign to another reviewer.

Use r? to explicitly pick a reviewer

@rustbot rustbot added S-waiting-on-review Status: Awaiting review from the assignee but also interested parties. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Jul 17, 2025
@rustbot
Copy link
Collaborator

rustbot commented Jul 17, 2025

Some changes occurred to the CTFE machinery

cc @RalfJung, @oli-obk, @lcnr

Some changes occurred to the CTFE / Miri interpreter

cc @rust-lang/miri

Some changes occurred to the CTFE / Miri interpreter

cc @rust-lang/miri, @RalfJung, @oli-obk, @lcnr

The Miri subtree was changed

cc @rust-lang/miri

@RalfJung RalfJung added T-lang Relevant to the language team needs-fcp This change is insta-stable, or significant enough to need a team FCP to proceed. labels Jul 17, 2025
@RalfJung
Copy link
Member Author

This will need t-lang FCP since it is an insta-stable extension of what const can do, but I first want to make CI pass.

r? @oli-obk

@rustbot rustbot assigned oli-obk and unassigned davidtwco Jul 17, 2025
@RalfJung RalfJung added T-opsem Relevant to the opsem team and removed T-libs Relevant to the library team, which will review and decide on the PR/issue. labels Jul 17, 2025
@RalfJung
Copy link
Member Author

RalfJung commented Jul 17, 2025

Let's see if there are any perf issues here.
@rust-timer queue
@bors2 try

@rust-timer

This comment has been minimized.

rust-bors bot added a commit that referenced this pull request Jul 17, 2025
const-eval: full support for pointer fragments

This fixes rust-lang/const-eval#72 and makes `swap_nonoverlapping` fully work in const-eval by enhancing per-byte provenance tracking with tracking of *which* of the bytes of the pointer this one is. Later, if we see all the same bytes in the exact same order, we can treat it like a whole pointer again without ever risking a leak of the data bytes (that encode the offset into the allocation). This lifts the limitation that was discussed quite a bit in #137280.

However, we still reject constants where the final value contains such a partial pointer: I have no idea how one could construct an LLVM global where one byte is defined as "the 3rd byte of a pointer to that other global over there" -- and even if LLVM supports this somehow, we can leave implementing that to a future PR. This one here is useful by allowing such partial pointers as intermediate values; in particular, this means one can do a byte-for-byte copy of a pointer within const-eval and that will work properly.

This also changes the behavior of Miri, by tracking the order of bytes with provenance and only considering a pointer to have valid provenance if all bytes are in the original order again. This is related to rust-lang/unsafe-code-guidelines#558. It means one cannot implement XOR linked lists with strict provenance any more, which is however only of theoretical interest. Practically I am curious if anyone will show up with any code that Miri now complains about - that would be interesting data.

TODO: update Miri test suite.
@rust-bors
Copy link

rust-bors bot commented Jul 17, 2025

⌛ Trying commit e97b4fe with merge 09988fb

To cancel the try build, run the command @bors2 try cancel.

@rustbot rustbot added the S-waiting-on-perf Status: Waiting on a perf run to be completed. label Jul 17, 2025
@rust-timer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@RalfJung RalfJung force-pushed the const-ptr-fragments branch from e97b4fe to 224d236 Compare July 17, 2025 19:50
@RalfJung RalfJung added the I-lang-nominated Nominated for discussion during a lang team meeting. label Jul 17, 2025
@RalfJung RalfJung force-pushed the const-ptr-fragments branch 2 times, most recently from 429218f to 4ff7ee7 Compare July 17, 2025 20:09
@rust-bors
Copy link

rust-bors bot commented Jul 17, 2025

☀️ Try build successful (CI)
Build commit: 09988fb (09988fb389684ce1e69a7ca9c7238fbe228aa65e, parent: bf5e6cc7a7a7eb03e3ed9b875d76530eddd47d5f)

@rust-timer

This comment has been minimized.

@rust-log-analyzer

This comment has been minimized.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (09988fb): comparison URL.

Overall result: ❌ regressions - please read the text below

Benchmarking this pull request means it may be perf-sensitive – we'll automatically label it not fit for rolling up. You can override this, but we strongly advise not to, due to possible changes in compiler perf.

Next Steps: If you can justify the regressions found in this try perf run, please do so in sufficient writing along with @rustbot label: +perf-regression-triaged. If not, please fix the regressions and do another perf run. If its results are neutral or positive, the label will be automatically removed.

@bors rollup=never
@rustbot label: -S-waiting-on-perf +perf-regression

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
0.3% [0.2%, 0.3%] 9
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
- - 0
All ❌✅ (primary) - - 0

Max RSS (memory usage)

Results (primary -3.7%, secondary -3.4%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-3.7% [-3.7%, -3.7%] 1
Improvements ✅
(secondary)
-3.4% [-4.0%, -2.5%] 4
All ❌✅ (primary) -3.7% [-3.7%, -3.7%] 1

Cycles

This benchmark run did not return any relevant results for this metric.

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 464.659s -> 464.054s (-0.13%)
Artifact size: 374.78 MiB -> 374.88 MiB (0.02%)

@rustbot rustbot added perf-regression Performance regression. and removed S-waiting-on-perf Status: Waiting on a perf run to be completed. labels Jul 17, 2025
@rfcbot rfcbot added final-comment-period In the final comment period and will be merged soon unless new substantive objections are raised. and removed proposed-final-comment-period Proposed to merge/close by relevant subteam, see T-<team> label. Will enter FCP once signed off. labels Aug 6, 2025
@rfcbot
Copy link

rfcbot commented Aug 6, 2025

🔔 This is now entering its final comment period, as per the review above. 🔔

@traviscross traviscross added I-lang-radar Items that are on lang's radar and will need eventual work or consideration. and removed I-lang-nominated Nominated for discussion during a lang team meeting. P-lang-drag-1 Lang team prioritization drag level 1. https://rust-lang.zulipchat.com/#narrow/channel/410516-t-lang labels Aug 6, 2025
@RalfJung
Copy link
Member Author

RalfJung commented Aug 6, 2025

@RalfJung I think my question then is:

* what does `to_le_bytes` return, during const-eval, when the value you are invoking it on is a `Pointer { ... }`?

If you try to actually look at those bytes, it aborts const-eval with an error ("reading pointer as integer") -- this is a ptr-to-int transmute which will always abort execution.

@rfcbot rfcbot added finished-final-comment-period The final comment period is finished for this PR / Issue. and removed final-comment-period In the final comment period and will be merged soon unless new substantive objections are raised. labels Aug 16, 2025
@rfcbot
Copy link

rfcbot commented Aug 16, 2025

The final comment period, with a disposition to merge, as per the review above, is now complete.

As the automated representative of the governance process, I would like to thank the author for their work and everyone else who contributed.

This will be merged soon.

@RalfJung
Copy link
Member Author

@bors r=oli-obk
(here)

@bors
Copy link
Collaborator

bors commented Aug 16, 2025

📌 Commit ba5b6b9 has been approved by oli-obk

It is now in the queue for this repository.

@bors bors added S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. and removed S-waiting-on-author Status: This is awaiting some action (such as code changes or more information) from the author. labels Aug 16, 2025
@Zalathar
Copy link
Contributor

Queue scheduling: If the current rollup fails, fall back to a rollup=never PR.

@bors p=1

@bors
Copy link
Collaborator

bors commented Aug 17, 2025

⌛ Testing commit ba5b6b9 with merge 99ba556...

@bors
Copy link
Collaborator

bors commented Aug 17, 2025

☀️ Test successful - checks-actions
Approved by: oli-obk
Pushing 99ba556 to master...

@bors bors added the merged-by-bors This PR was explicitly merged by bors. label Aug 17, 2025
@bors bors merged commit 99ba556 into rust-lang:master Aug 17, 2025
11 checks passed
@rustbot rustbot added this to the 1.91.0 milestone Aug 17, 2025
Copy link
Contributor

What is this? This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.

Comparing 2e2642e (parent) -> 99ba556 (this PR)

Test differences

Show 114 test diffs

Stage 1

  • errors::verify_const_eval_interior_mutable_borrow_escaping_22: pass -> [missing] (J0)
  • errors::verify_const_eval_interior_mutable_borrow_escaping_23: [missing] -> pass (J0)
  • errors::verify_const_eval_live_drop_32: pass -> [missing] (J0)
  • errors::verify_const_eval_live_drop_33: [missing] -> pass (J0)
  • errors::verify_const_eval_long_running_23: pass -> [missing] (J0)
  • errors::verify_const_eval_long_running_25: [missing] -> pass (J0)
  • errors::verify_const_eval_mutable_borrow_escaping_15: pass -> [missing] (J0)
  • errors::verify_const_eval_mutable_borrow_escaping_16: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_await_30: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_await_31: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_deref_coercion_31: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_deref_coercion_32: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_fmt_macro_call_16: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_fmt_macro_call_17: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_fn_call_17: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_fn_call_18: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_for_loop_into_iter_26: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_for_loop_into_iter_27: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_intrinsic_18: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_intrinsic_19: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_match_eq_25: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_match_eq_26: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_question_branch_27: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_question_branch_28: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_question_from_residual_28: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_question_from_residual_29: [missing] -> pass (J0)
  • errors::verify_const_eval_non_const_try_block_from_output_29: pass -> [missing] (J0)
  • errors::verify_const_eval_non_const_try_block_from_output_30: [missing] -> pass (J0)
  • errors::verify_const_eval_panic_non_str_8: pass -> [missing] (J0)
  • errors::verify_const_eval_panic_non_str_9: [missing] -> pass (J0)
  • errors::verify_const_eval_partial_pointer_in_final_4: [missing] -> pass (J0)
  • errors::verify_const_eval_raw_ptr_comparison_7: pass -> [missing] (J0)
  • errors::verify_const_eval_raw_ptr_comparison_8: [missing] -> pass (J0)
  • errors::verify_const_eval_raw_ptr_to_int_6: pass -> [missing] (J0)
  • errors::verify_const_eval_raw_ptr_to_int_7: [missing] -> pass (J0)
  • errors::verify_const_eval_thread_local_access_5: pass -> [missing] (J0)
  • errors::verify_const_eval_thread_local_access_6: [missing] -> pass (J0)
  • errors::verify_const_eval_unallowed_fn_pointer_call_10: [missing] -> pass (J0)
  • errors::verify_const_eval_unallowed_fn_pointer_call_9: pass -> [missing] (J0)
  • errors::verify_const_eval_unallowed_heap_allocations_20: pass -> [missing] (J0)
  • errors::verify_const_eval_unallowed_heap_allocations_21: [missing] -> pass (J0)
  • errors::verify_const_eval_unallowed_inline_asm_21: pass -> [missing] (J0)
  • errors::verify_const_eval_unallowed_inline_asm_22: [missing] -> pass (J0)
  • errors::verify_const_eval_unallowed_op_in_const_context_19: pass -> [missing] (J0)
  • errors::verify_const_eval_unallowed_op_in_const_context_20: [missing] -> pass (J0)
  • errors::verify_const_eval_unmarked_const_item_exposed_13: pass -> [missing] (J0)
  • errors::verify_const_eval_unmarked_const_item_exposed_14: [missing] -> pass (J0)
  • errors::verify_const_eval_unmarked_intrinsic_exposed_14: pass -> [missing] (J0)
  • errors::verify_const_eval_unmarked_intrinsic_exposed_15: [missing] -> pass (J0)
  • errors::verify_const_eval_unstable_const_fn_10: pass -> [missing] (J0)
  • errors::verify_const_eval_unstable_const_fn_11: [missing] -> pass (J0)
  • errors::verify_const_eval_unstable_const_trait_11: pass -> [missing] (J0)
  • errors::verify_const_eval_unstable_const_trait_12: [missing] -> pass (J0)
  • errors::verify_const_eval_unstable_in_stable_exposed_4: pass -> [missing] (J0)
  • errors::verify_const_eval_unstable_in_stable_exposed_5: [missing] -> pass (J0)
  • errors::verify_const_eval_unstable_intrinsic_12: pass -> [missing] (J0)
  • errors::verify_const_eval_unstable_intrinsic_13: [missing] -> pass (J0)
  • [ui] tests/ui/consts/const-eval/partial_ptr_overwrite.rs: pass -> [missing] (J1)
  • [ui] tests/ui/consts/const-eval/ptr_fragments.rs: [missing] -> pass (J1)
  • [ui] tests/ui/consts/const-eval/ptr_fragments_in_final.rs: [missing] -> pass (J1)
  • [ui] tests/ui/consts/const-eval/read_partial_ptr.rs: [missing] -> pass (J1)

Stage 2

  • [ui] tests/ui/consts/const-eval/partial_ptr_overwrite.rs: pass -> [missing] (J2)
  • [ui] tests/ui/consts/const-eval/ptr_fragments.rs: [missing] -> pass (J2)
  • [ui] tests/ui/consts/const-eval/ptr_fragments_in_final.rs: [missing] -> pass (J2)
  • [ui] tests/ui/consts/const-eval/read_partial_ptr.rs: [missing] -> pass (J2)

Additionally, 49 doctest diffs were found. These are ignored, as they are noisy.

Job group index

Test dashboard

Run

cargo run --manifest-path src/ci/citool/Cargo.toml -- \
    test-dashboard 99ba5565678a51c2488322a5e75d5b59e323b498 --output-dir test-dashboard

And then open test-dashboard/index.html in your browser to see an overview of all executed tests.

Job duration changes

  1. x86_64-apple-1: 6721.2s -> 9511.8s (41.5%)
  2. dist-apple-various: 5607.9s -> 4254.5s (-24.1%)
  3. x86_64-apple-2: 5642.5s -> 6816.9s (20.8%)
  4. dist-aarch64-apple: 5699.1s -> 6359.9s (11.6%)
  5. aarch64-gnu-debug: 4997.8s -> 4521.9s (-9.5%)
  6. dist-x86_64-freebsd: 5159.3s -> 4798.4s (-7.0%)
  7. dist-i686-mingw: 9154.5s -> 9751.0s (6.5%)
  8. x86_64-gnu-llvm-20-1: 3732.4s -> 3506.2s (-6.1%)
  9. aarch64-apple: 5458.1s -> 5131.7s (-6.0%)
  10. x86_64-gnu-llvm-19-2: 6379.1s -> 5998.7s (-6.0%)
How to interpret the job duration changes?

Job durations can vary a lot, based on the actual runner instance
that executed the job, system noise, invalidated caches, etc. The table above is provided
mostly for t-infra members, for simpler debugging of potential CI slow-downs.

@rust-timer
Copy link
Collaborator

Finished benchmarking commit (99ba556): comparison URL.

Overall result: ❌✅ regressions and improvements - please read the text below

Our benchmarks found a performance regression caused by this PR.
This might be an actual regression, but it can also be just noise.

Next Steps:

  • If the regression was expected or you think it can be justified,
    please write a comment with sufficient written justification, and add
    @rustbot label: +perf-regression-triaged to it, to mark the regression as triaged.
  • If you think that you know of a way to resolve the regression, try to create
    a new PR with a fix for the regression.
  • If you do not understand the regression or you think that it is just noise,
    you can ask the @rust-lang/wg-compiler-performance working group for help (members of this group
    were already notified of this PR).

@rustbot label: +perf-regression
cc @rust-lang/wg-compiler-performance

Instruction count

Our most reliable metric. Used to determine the overall result above. However, even this metric can be noisy.

mean range count
Regressions ❌
(primary)
1.2% [1.2%, 1.2%] 1
Regressions ❌
(secondary)
- - 0
Improvements ✅
(primary)
-0.2% [-0.2%, -0.2%] 1
Improvements ✅
(secondary)
-0.5% [-2.0%, -0.1%] 8
All ❌✅ (primary) 0.5% [-0.2%, 1.2%] 2

Max RSS (memory usage)

Results (primary 1.4%, secondary -1.0%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
1.4% [1.4%, 1.4%] 1
Regressions ❌
(secondary)
0.6% [0.6%, 0.6%] 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-2.5% [-2.5%, -2.5%] 1
All ❌✅ (primary) 1.4% [1.4%, 1.4%] 1

Cycles

Results (secondary -1.2%)

A less reliable metric. May be of interest, but not used to determine the overall result above.

mean range count
Regressions ❌
(primary)
- - 0
Regressions ❌
(secondary)
5.2% [5.2%, 5.2%] 1
Improvements ✅
(primary)
- - 0
Improvements ✅
(secondary)
-2.8% [-3.6%, -2.2%] 4
All ❌✅ (primary) - - 0

Binary size

This benchmark run did not return any relevant results for this metric.

Bootstrap: 470.222s -> 469.684s (-0.11%)
Artifact size: 377.51 MiB -> 377.58 MiB (0.02%)

@RalfJung RalfJung deleted the const-ptr-fragments branch August 18, 2025 16:49
github-actions bot pushed a commit to model-checking/verify-rust-std that referenced this pull request Aug 18, 2025
const-eval: full support for pointer fragments

This fixes rust-lang/const-eval#72 and makes `swap_nonoverlapping` fully work in const-eval by enhancing per-byte provenance tracking with tracking of *which* of the bytes of the pointer this one is. Later, if we see all the same bytes in the exact same order, we can treat it like a whole pointer again without ever risking a leak of the data bytes (that encode the offset into the allocation). This lifts the limitation that was discussed quite a bit in rust-lang#137280.

For a concrete piece of code that used to fail and now works properly consider this example doing a byte-for-byte memcpy in const without using intrinsics:
```rust
use std::{mem::{self, MaybeUninit}, ptr};

type Byte = MaybeUninit<u8>;

const unsafe fn memcpy(dst: *mut Byte, src: *const Byte, n: usize) {
    let mut i = 0;
    while i < n {
        *dst.add(i) = *src.add(i);
        i += 1;
    }
}

const _MEMCPY: () = unsafe {
    let ptr = &42;
    let mut ptr2 = ptr::null::<i32>();
    // Copy from ptr to ptr2.
    memcpy(&mut ptr2 as *mut _ as *mut _, &ptr as *const _ as *const _, mem::size_of::<&i32>());
    assert!(*ptr2 == 42);
};
```
What makes this code tricky is that pointers are "opaque blobs" in const-eval, we cannot just let people look at the individual bytes since *we don't know what those bytes look like* -- that depends on the absolute address the pointed-to object will be placed at. The code above "breaks apart" a pointer into individual bytes, and then puts them back together in the same order elsewhere. This PR implements the logic to properly track how those individual bytes relate to the original pointer, and to recognize when they are in the right order again.

We still reject constants where the final value contains a not-fully-put-together pointer: I have no idea how one could construct an LLVM global where one byte is defined as "the 3rd byte of a pointer to that other global over there" -- and even if LLVM supports this somehow, we can leave implementing that to a future PR. It seems unlikely to me anyone would even want this, but who knows.^^

This also changes the behavior of Miri, by tracking the order of bytes with provenance and only considering a pointer to have valid provenance if all bytes are in the original order again. This is related to rust-lang/unsafe-code-guidelines#558. It means one cannot implement XOR linked lists with strict provenance any more, which is however only of theoretical interest. Practically I am curious if anyone will show up with any code that Miri now complains about - that would be interesting data. Cc `@rust-lang/opsem`
@Mark-Simulacrum Mark-Simulacrum removed the perf-regression Performance regression. label Aug 19, 2025
@Mark-Simulacrum
Copy link
Member

Regression doesn't look real (bimodality).

@Zenithsiz

This comment has been minimized.

@jieyouxu
Copy link
Member

Apologizes for commenting on a closed PR, but I have an possible use case for creating not-fully-put-together pointers: "Custom" relocations.

Please instead create a new dedicated issue for your discussion, a closed PR has no visibility and will get lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
disposition-merge This issue / PR is in PFCP or FCP with a disposition to merge it. finished-final-comment-period The final comment period is finished for this PR / Issue. I-lang-radar Items that are on lang's radar and will need eventual work or consideration. merged-by-bors This PR was explicitly merged by bors. needs-fcp This change is insta-stable, or significant enough to need a team FCP to proceed. S-waiting-on-bors Status: Waiting on bors to run and complete tests. Bors will change the label on completion. T-compiler Relevant to the compiler team, which will review and decide on the PR/issue. T-lang Relevant to the language team T-opsem Relevant to the opsem team to-announce Announce this issue on triage meeting
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Full support for pointer fragments