rust/tests/ui/modules
Esteban Küber 6efddac288 Provide more context on derived obligation error primary label
Expand the primary span of E0277 when the immediate unmet bound is not what the user wrote:

```
error[E0277]: the trait bound `i32: Bar` is not satisfied
 --> f100.rs:6:6
  |
6 |     <i32 as Foo>::foo();
  |      ^^^ the trait `Bar` is not implemented for `i32`, which is required by `i32: Foo`
  |
help: this trait has no implementations, consider adding one
 --> f100.rs:2:1
  |
2 | trait Bar {}
  | ^^^^^^^^^
note: required for `i32` to implement `Foo`
 --> f100.rs:3:14
  |
3 | impl<T: Bar> Foo for T {}
  |         ---  ^^^     ^
  |         |
  |         unsatisfied trait bound introduced here
```

Fix #40120.
2024-01-30 21:28:18 +00:00
..
auxiliary Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod_dir_implicit_aux Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod_dir_simple Move /src/test to /tests 2023-01-11 09:32:08 +00:00
module-polymorphism3-files Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-56411-aux.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-56411.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-56411.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-107649.rs test: snapshot for derive suggestion in diff files 2023-02-09 22:28:53 +08:00
issue-107649.stderr Provide more context on derived obligation error primary label 2024-01-30 21:28:18 +00:00
mod_dir_implicit.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_dir_path2.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_dir_path3.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_dir_path_multi.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_dir_path.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_dir_recursive.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_dir_simple.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_file_aux.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod_file_with_path_attr.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod_file.rs remove invalid ignore-pretty 2023-04-03 09:24:11 +02:00
mod-inside-fn.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
mod-view-items.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-invalid-form.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-invalid-form.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
path-macro.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-macro.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
path-no-file-name.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
path-no-file-name.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
special_module_name_ignore.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
special_module_name.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
special_module_name.stderr Mention the syntax for use on mod foo; if foo doesn't exist 2023-10-21 15:56:01 +00:00