2024-02-16 14:02:50 -06:00
|
|
|
//@ aux-build: foreign-generic-mismatch.rs
|
2023-04-17 16:56:42 -05:00
|
|
|
|
|
|
|
extern crate foreign_generic_mismatch;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
foreign_generic_mismatch::const_arg::<()>();
|
|
|
|
//~^ ERROR function takes 2 generic arguments but 1 generic argument was supplied
|
|
|
|
foreign_generic_mismatch::lt_arg::<'static, 'static>();
|
|
|
|
//~^ ERROR function takes 1 lifetime argument but 2 lifetime arguments were supplied
|
|
|
|
}
|