Fix semver checks for 1.69

This commit is contained in:
Eric Huss 2023-04-20 15:31:35 -07:00
parent 71ec5eecb2
commit 093ba86a28

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
}
```