Skip to content

Error when trait bound not satisfied for function argument should point at argument #41781

Closed
@jdm

Description

@jdm
trait T {}

fn function<U: T>(u: U) {}

fn main() {
    function(0u32);
}

This yields:

error[E0277]: the trait bound `u32: T` is not satisfied
 --> <anon>:6:5
  |
6 |     function(0u32);
  |     ^^^^^^^^ the trait `T` is not implemented for `u32`
  |
  = note: required by `function`

error: aborting due to previous error

When there are multiple arguments, this is much less helpful than if the span pointed at the argument in question.

Metadata

Metadata

Assignees

No one assigned

    Labels

    A-diagnosticsArea: Messages for errors, warnings, and lintsC-enhancementCategory: An issue proposing an enhancement or a PR with one.T-compilerRelevant to the compiler team, which will review and decide on the PR/issue.WG-diagnosticsWorking group: Diagnostics

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions