Auto merge of #12011 - ehuss:fix-semver-checks, r=epage

Fix semver checks for 1.69

There is a small wording change in the 1.69 release that was causing this test to fail.
This commit is contained in:
bors 2023-04-20 22:49:18 +00:00 committed by Eric Huss
parent 73dc7d5b66
commit 07e53ab7ad
1 changed files with 1 additions and 1 deletions

View File

@ -944,7 +944,7 @@ pub fn foo<T, U>() {}
use updated_crate::foo;
fn main() {
foo::<u8>(); // Error: this function takes 2 generic arguments but 1 generic argument was supplied
foo::<u8>(); // Error: function takes 2 generic arguments but 1 generic argument was supplied
}
```