about summary refs log tree commit diff
path: root/compiler/rustc_driver_impl/src
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2025-01-30 18:50:58 +0000
committerEsteban Küber <esteban@kuber.com.ar>2025-02-02 19:10:01 +0000
commit382caf96a72443b9ad3dfa80b106212900397928 (patch)
tree17a6aeca4c1417d1ce429f6602f6b60e9f7dcacf /compiler/rustc_driver_impl/src
parente1f09207fb273b10fee01c0bef1b2c6130eaea80 (diff)
downloadrust-382caf96a72443b9ad3dfa80b106212900397928.tar.gz
rust-382caf96a72443b9ad3dfa80b106212900397928.zip
Use short ty string for binop and upops errors
```
error[E0369]: cannot add `((..., ..., ..., ...), ..., ..., ...)` to `((..., ..., ..., ...), ..., ..., ...)`
  --> $DIR/binop.rs:9:7
   |
LL |     x + x;
   |     - ^ - ((..., ..., ..., ...), ..., ..., ...)
   |     |
   |     ((..., ..., ..., ...), ..., ..., ...)
   |
   = note: the full name for the type has been written to '$TEST_BUILD_DIR/$FILE.long-type-hash.txt'
   = note: consider using `--verbose` to print the full type name to the console
```

```
error[E0600]: cannot apply unary operator `!` to type `(..., ..., ..., ...)`
  --> $DIR/binop.rs:14:5
   |
LL |     !x;
   |     ^^ cannot apply unary operator `!`
   |
   = note: the full name for the type has been written to '$TEST_BUILD_DIR/$FILE.long-type-hash.txt'
   = note: consider using `--verbose` to print the full type name to the console
```

CC #135919.
Diffstat (limited to 'compiler/rustc_driver_impl/src')
0 files changed, 0 insertions, 0 deletions