]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/const-generics/parser-error-recovery/issue-89013.stderr
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / const-generics / parser-error-recovery / issue-89013.stderr
index 9d4739926700bbb296e317fbb5a343ef0b04504b..d2d58c496df2c898482e28c7c2ada6297ae2e519 100644 (file)
@@ -29,7 +29,7 @@ note: trait defined here, with 1 generic parameter: `N`
   --> $DIR/issue-89013.rs:1:7
    |
 LL | trait Foo<const N: usize> {
-   |       ^^^       -
+   |       ^^^ --------------
 help: add missing generic argument
    |
 LL | impl Foo<N, N = const 3> for Bar {