mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +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
|
|
}
|