mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 05:04:23 +00:00
11 lines
382 B
Rust
11 lines
382 B
Rust
//@ aux-build: foreign-generic-mismatch.rs
|
|
|
|
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
|
|
}
|