about summary refs log tree commit diff
path: root/compiler/rustc_parse/src/parser/ty.rs
diff options
context:
space:
mode:
authorJieyou Xu <jieyouxu@outlook.com>2025-09-11 09:00:01 +0800
committerJieyou Xu <jieyouxu@outlook.com>2025-09-11 09:10:46 +0800
commitb38a86f4d7c28ae9ab153b87c7e45037e56306fb (patch)
tree4a732b90729f242a458b49d98ec79d96dc186a58 /compiler/rustc_parse/src/parser/ty.rs
parentfc58d8f5cce592998d0ba43b25e445eb6b96c827 (diff)
downloadrust-b38a86f4d7c28ae9ab153b87c7e45037e56306fb.tar.gz
rust-b38a86f4d7c28ae9ab153b87c7e45037e56306fb.zip
Revert "Rollup merge of #122661 - estebank:assert-macro-span, r=petrochenkov"
This reverts commit 1eeb8e8b151d1da7daa73837a25dc5f7a1a7fa28, reversing
changes made to 324bf2b9fd8bf9661e7045c8a93f5ff0ec1a8ca5.

Unfortunately the assert desugaring change is not backwards compatible,
see RUST-145770.

Code such as

```rust
#[derive(Debug)]
struct F {
    data: bool
}

impl std::ops::Not for F {
  type Output = bool;
  fn not(self) -> Self::Output { !self.data }
}

fn main() {
  let f = F { data: true };

  assert!(f);
}
```

would be broken by the assert desugaring change. We may need to land
the change over an edition boundary, or limit the editions that the
desugaring change impacts.
Diffstat (limited to 'compiler/rustc_parse/src/parser/ty.rs')
0 files changed, 0 insertions, 0 deletions