about summary refs log tree commit diff
path: root/compiler/rustc_codegen_llvm/src
diff options
context:
space:
mode:
authorYuki Okushi <huyuumi.dev+love@gmail.com>2022-12-03 12:51:30 +0900
committerGitHub <noreply@github.com>2022-12-03 12:51:30 +0900
commit7d4af8852cde185b52c403499578fb75e96ccfec (patch)
tree58358772894a9eb0bf0d69cdf8a6fa5f8b380fe8 /compiler/rustc_codegen_llvm/src
parent9afa850d39965d27502f0eaadeea879f156e5ae0 (diff)
parent5c642d7d1cb56b341f76b829e507ebcd58a332c1 (diff)
downloadrust-7d4af8852cde185b52c403499578fb75e96ccfec.tar.gz
rust-7d4af8852cde185b52c403499578fb75e96ccfec.zip
Rollup merge of #105188 - compiler-errors:verbose-ty-err, r=TaKO8Ki
Don't elide type information when printing E0308 with `-Zverbose`

When we pass `-Zverbose`, we kinda expect for all `_` to be replaced with more descriptive information, for example --

```
   = note: expected fn pointer `fn(_, u32)`
                 found fn item `fn(_, i32) {foo}`
```

Where `_` is the "identical" part of the fn signatures, now gets rendered as:

```
   = note: expected fn pointer `fn(i32, u32)`
                 found fn item `fn(i32, i32) {foo}`
```
Diffstat (limited to 'compiler/rustc_codegen_llvm/src')
0 files changed, 0 insertions, 0 deletions